Browse Source
Merge pull request #286 from TheCyberRonin/feature/provide-compressed-build-during-pr
feat: Provide compressed build during PR GitHub Action
pull/289/head
Hunter Thornsberry
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
9 additions and
0 deletions
-
.github/workflows/pr.yml
|
|
|
@ -19,3 +19,12 @@ jobs: |
|
|
|
|
|
|
|
- name: Build Package |
|
|
|
run: pnpm build |
|
|
|
|
|
|
|
- name: Compress build |
|
|
|
run: pnpm package |
|
|
|
|
|
|
|
- name: Archive compressed build |
|
|
|
uses: actions/upload-artifact@v4 |
|
|
|
with: |
|
|
|
name: build |
|
|
|
path: dist/build.tar |
|
|
|
|