Skip to content

Commit

Permalink
make artifact name unique
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Sep 17, 2024
1 parent 90183fc commit 5d0ea22
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5d0ea22

Please sign in to comment.