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
|
run: npx nuxi build
|
||||||
|
|
||||||
# Upload
|
# Upload
|
||||||
- name: Package to zip
|
- name: Package to tar
|
||||||
if: success()
|
if: success()
|
||||||
run: tar --create --file build-${{ github.run_number }}.tar .output
|
run: tar --create --file build.tar .output/*
|
||||||
- name: Upload build
|
- name: Upload build
|
||||||
if: success()
|
if: success()
|
||||||
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Build-${{ github.run_number }}
|
name: WorkshopTasker-${{ github.ref_name }}-${{ github.run_number }}.tar
|
||||||
path: build-${{ github.run_number }}.tar
|
path: build.tar
|
||||||
|
|
Loading…
Reference in a new issue