From f41552640e9e8bfbbdf7f3930c6c9601fcd3fa89 Mon Sep 17 00:00:00 2001 From: Shuhei Takahashi Date: Sat, 28 Dec 2024 11:47:40 +0900 Subject: [PATCH] Avoid artifact name conflicts --- .github/workflows/build.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5f56cac..a0084f3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -66,7 +66,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.os }} path: ./wheelhouse/*.whl upload_pypi: @@ -84,10 +84,16 @@ jobs: name: sdist path: dist - - name: Download artifacts (wheels) + - name: Download artifacts (wheels-ubuntu-latest) uses: actions/download-artifact@v4 with: - name: wheels + name: wheels-ubuntu-latest + path: dist + + - name: Download artifacts (wheels-macos-latest) + uses: actions/download-artifact@v4 + with: + name: wheels-macos-latest path: dist - name: Publish package to Test PyPI