Skip to content

Commit

Permalink
fix wheels pipeline (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV authored Jan 31, 2025
1 parent 6569960 commit 2395d11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ jobs:
# Copy wheels to artifact.
- name: Copy wheels to artifact
# Version v4 fails to copy files from same folder for multiple builds.
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.python }}
path: ./wheelhouse/*.whl


Expand All @@ -79,9 +78,10 @@ jobs:
environment: pypi

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels-*
merge-multiple: true
path: dist

- uses: pypa/[email protected]
Expand Down

0 comments on commit 2395d11

Please sign in to comment.