From 3b64ff721444133f89734192292fa7b1be95db39 Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara Date: Tue, 4 Jun 2024 15:25:54 +0200 Subject: [PATCH] fix: give unique name for artifacts upload-artifacts/v4 has a breaking change from v3, which requires the artifacts names to be unique. Fix #219 --- .github/workflows/release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f7ea9d5..a1e6430d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-macos path: dist build-windows: @@ -107,7 +107,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-windows-${{ matrix.target }} path: dist build-linux: @@ -132,7 +132,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-linux-${{ matrix.target }} path: dist build-linux-aarch64: @@ -160,7 +160,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-linux-aarch64 path: dist build-linux-armv6: @@ -195,7 +195,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-linux-armv6 path: dist publish-pypi: @@ -213,8 +213,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels path: dist + pattern: wheels-* + merge-multiple: true - name: Check dist run: ls -al ./dist/*