From e0ecdff3c1337f6666d2a4365178e4038fcae5d4 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Thu, 12 Dec 2024 17:14:35 -0500 Subject: [PATCH] unique upload-artifact names --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2b9d28d..fa52f76 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,6 +31,7 @@ jobs: - uses: actions/upload-artifact@v4 with: + name: wheels-${{ matrix.os }} path: ./wheelhouse/*.whl build_wheels_macos_arm64: @@ -76,6 +77,7 @@ jobs: echo "DONE." - uses: actions/upload-artifact@v4 with: + name: wheels-macos-arm64 path: ./wheelhouse/*.whl build_sdist: @@ -93,6 +95,7 @@ jobs: - uses: actions/upload-artifact@v4 with: + name: wheels-sdist path: dist/*.tar.gz upload_pypi: @@ -102,8 +105,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact path: dist + pattern: wheels-* + merge-multiple: true - uses: pypa/gh-action-pypi-publish@v1.12.2 with: