Workflow: rename the artifact with a better name
All checks were successful
Build dev / build (push) Successful in 58s
All checks were successful
Build dev / build (push) Successful in 58s
This commit is contained in:
parent
d5d2f2e889
commit
95137acbed
1 changed files with 5 additions and 5 deletions
|
@ -21,12 +21,12 @@ jobs:
|
|||
run: npx nuxi build
|
||||
|
||||
# Upload
|
||||
- name: Package to zip
|
||||
- name: Package to tar
|
||||
if: success()
|
||||
run: tar --create --file build-${{ github.run_number }}.tar .output
|
||||
run: tar --create --file build.tar .output/*
|
||||
- name: Upload build
|
||||
if: success()
|
||||
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||||
with:
|
||||
name: Build-${{ github.run_number }}
|
||||
path: build-${{ github.run_number }}.tar
|
||||
name: WorkshopTasker-${{ github.ref_name }}-${{ github.run_number }}.tar
|
||||
path: build.tar
|
||||
|
|
Loading…
Reference in a new issue