Skip to content

Commit

Permalink
Download all artifacts to same directory in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Mar 6, 2024
1 parent 3c4d5d9 commit 287ab10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,17 @@ jobs:
steps:
- name: Download wheels from previous jobs
uses: actions/download-artifact@v4
with:
path: wheels
merge-multiple: true

- name: Upload to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --skip-existing *
args: --skip-existing wheels/*.whl

rust-release-upload:
name: Upload to crates.io
Expand Down

0 comments on commit 287ab10

Please sign in to comment.