Skip to content

feat(artifacts): Add support for trigger artifacts #618

feat(artifacts): Add support for trigger artifacts

feat(artifacts): Add support for trigger artifacts #618

Workflow file for this run

---
name: "Test"
on:
pull_request:
branches:
- main
jobs:
test: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: actions/setup-node@v3
with:
node-version: "16"
- run: |
yarn
- run: |
yarn all
- name: Check for diff
id: diff
run: echo "GIT_STATUS=$(git status -s dist/)" >> "$GITHUB_OUTPUT"
- name: Push build
if: ${{ steps.diff.outputs.GIT_STATUS != '' }}
run: |
git config user.name github-actions
git config user.email [email protected]
git add dist/*
git commit -m "chore: Build Source"
git push