From 2d00d661ad73f0813a8b1d45b5318b5871ab6df0 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Fri, 22 Nov 2024 07:09:03 +0900 Subject: [PATCH] Try to use an unique name per upload `upload-artifact` v4 doesn't support multiple artifacts with the same name. Ref: https://github.com/actions/upload-artifact/issues/480 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e7fe53d..8f88456 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,5 +29,5 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: cross-gem + name: cross-gem-${{ matrix.ruby-platform }} path: ${{ steps.cross-gem.outputs.gem-path }}