From fa39d9f3cdb9aceb9c14f45f914f5fa60d5c31bb Mon Sep 17 00:00:00 2001 From: Keegan Campbell Date: Tue, 23 Jan 2024 11:22:48 -0800 Subject: [PATCH] Fix broken release process (#337) * Revert to upload-artifact@v3 (#1) * Try upgrade to actions/upload-artifact@v4 again --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d569bc..b8bd455 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: - run: ${{ matrix.build }} - uses: actions/upload-artifact@v4 with: - name: build-artifacts + name: build-artifacts-${{ matrix.os }} path: dist release: name: release @@ -54,8 +54,9 @@ jobs: - uses: actions/download-artifact@v4 id: download with: - name: build-artifacts + pattern: build-artifacts-* path: dist + merge-multiple: true - run: ls dist - run: npx semantic-release env: