From 9bcf31f4ca24f804d09a00d552bdde3a84b80318 Mon Sep 17 00:00:00 2001 From: Florian Hussonnois Date: Sat, 16 Mar 2024 10:28:38 +0100 Subject: [PATCH] build: fix release --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d97557cdb..fa5bf6a74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -129,7 +129,7 @@ jobs: - name: 'Upload build artifact' uses: actions/upload-artifact@v4 with: - name: artifacts + name: artifacts-${{ runner.os }}-${{ runner.arch }} path: | dist/*.zip dist/*.tar.gz @@ -148,6 +148,10 @@ jobs: - name: 'Download all artifacts' uses: actions/download-artifact@v4 + with: + path: artifacts + pattern: artifacts-* + merge-multiple: true - name: 'Set up Java' uses: actions/setup-java@v4