Skip to content

Commit

Permalink
ci: add dist.zip artifact for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
meronz authored Sep 21, 2024
1 parent 57206a9 commit c928a82
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Checks
name: PR Checks and Build

on:
push:
Expand All @@ -23,3 +23,10 @@ jobs:
- run: npm ci
- run: npm run build
- run: npm run gen-schemas
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: npm run pack
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: actions/upload-artifact@v4
with:
name: dist zip
path: dist.zip

0 comments on commit c928a82

Please sign in to comment.