From 5aa51ed196cde2bb543317e9449aaf700de024fe Mon Sep 17 00:00:00 2001 From: itzTanos29 Date: Mon, 22 Jun 2026 13:09:35 -0400 Subject: [PATCH] Use unique release artifact names --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04cd04e..fda39a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,9 +31,9 @@ jobs: - name: "💾 save binaries" uses: actions/upload-artifact@v7 with: - name: bin-artifact + name: bin-artifact-${{ matrix.arch_name }} path: tmux-mem-cpu-load-${{ matrix.arch_name }}.tar.xz - retention-days: 1 + retention-days: 1 release: name: release runs-on: ubuntu-latest @@ -47,7 +47,8 @@ jobs: - name: get artifact uses: actions/download-artifact@v8 with: - name: bin-artifact + pattern: bin-artifact-* + merge-multiple: true path: . - name: "✅ checksum" run: find . -maxdepth 1 -name "*.tar.xz" | xargs sha256sum > checksum_all.sha256 @@ -59,4 +60,4 @@ jobs: files: | LICENSE *.tar.xz - *.sha256 \ No newline at end of file + *.sha256