mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50: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: |
|
run: |
|
||||||
nix build -L .#${{ matrix.target }}
|
nix build -L .#${{ matrix.target }}
|
||||||
nix run -L .#${{ matrix.target }} -- --version
|
nix run -L .#${{ matrix.target }} -- --version
|
||||||
- name: Upload release artifact
|
- name: Upload release artifact (tarball)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: release
|
name: "himalaya.${{ matrix.target }}.tgz"
|
||||||
path: result
|
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