mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-21 18:40:19 +00:00
make artifact name unique
This commit is contained in:
parent
90183fc302
commit
5d0ea22e3c
1 changed files with 8 additions and 3 deletions
11
.github/workflows/test.yml
vendored
11
.github/workflows/test.yml
vendored
|
@ -39,8 +39,13 @@ jobs:
|
|||
run: |
|
||||
nix build -L .#${{ matrix.target }}
|
||||
nix run -L .#${{ matrix.target }} -- --version
|
||||
- name: Upload release artifact
|
||||
- name: Upload release artifact (tarball)
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release
|
||||
path: result
|
||||
name: "himalaya.${{ matrix.target }}.tgz"
|
||||
path: result/himalaya.tgz
|
||||
- name: Upload release artifact (zip)
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: "himalaya.${{ matrix.target }}.zip"
|
||||
path: result/himalaya.zip
|
||||
|
|
Loading…
Reference in a new issue