Skip to content

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

feat(artifacts): Add support for trigger artifacts

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

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: Changed files
uses: tj-actions/changed-files@v37
id: changed-files
with:
files: dist
- name: Push build
if: steps.changed-files.outputs.any_changed == 'true'
run: |
git config user.name github-actions
git config user.email [email protected]
git add dist/*
git commit -m "chore: Build Source"
git push