Skip to content

Commit

Permalink
unique upload-artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Dec 12, 2024
1 parent bc88119 commit e0ecdff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

build_wheels_macos_arm64:
Expand Down Expand Up @@ -76,6 +77,7 @@ jobs:
echo "DONE."
- uses: actions/upload-artifact@v4
with:
name: wheels-macos-arm64
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -93,6 +95,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: wheels-sdist
path: dist/*.tar.gz

upload_pypi:
Expand All @@ -102,8 +105,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
pattern: wheels-*
merge-multiple: true

- uses: pypa/[email protected]
with:
Expand Down

0 comments on commit e0ecdff

Please sign in to comment.