From 5d0ea22e3ce559171c03d929862672e8b69f2ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Tue, 17 Sep 2024 09:47:17 +0200 Subject: [PATCH] make artifact name unique --- .github/workflows/test.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a319c3..8f71636 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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