From 7343f42e567ee623ce19574e6ee8be643ae42c81 Mon Sep 17 00:00:00 2001 From: Hans Date: Thu, 25 Apr 2024 00:09:58 +0800 Subject: [PATCH] Fix artifacts upload/download --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40df27e..14f7d58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,10 +65,9 @@ jobs: - name: Upload build artifacts uses: actions/upload-artifact@v4 with: - name: bin + name: bin-${{ matrix.runs-on }} path: bin retention-days: 3 - merge-multiple: true publish: needs: build runs-on: ubuntu-latest @@ -89,8 +88,9 @@ jobs: - name: Download bundled files uses: actions/download-artifact@v4 with: - name: bin path: bin + pattern: bin-* + merge-multiple: true - run: yarn install - run: yarn build - name: Publish to NPM