Skip to content

Commit

Permalink
CI: fix artifact downloads of wheels for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-rhodes committed Feb 15, 2025
1 parent da49d50 commit 16f1b5a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,17 @@ jobs:
# download wheels
- uses: actions/download-artifact@v4
with:
name: wheelhouse
name: wheelhouse-macos-latest
path: dist

- uses: actions/download-artifact@v4
with:
name: wheelhouse-ubuntu-latest
path: dist

- uses: actions/download-artifact@v4
with:
name: wheelhouse-windows-latest
path: dist

# For the activation of the PyPI index, please add a secret token from
Expand Down

0 comments on commit 16f1b5a

Please sign in to comment.