We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bcebd commit 605c02eCopy full SHA for 605c02e
.github/workflows/CI.yml
@@ -103,13 +103,19 @@ jobs:
103
- uses: actions/download-artifact@v4
104
with:
105
name: wheels-linux-x86_64
106
+ path: wheels-linux-x86_64
107
108
109
name: wheels-macos-x86_64
110
+ path: wheels-macos-x86_64
111
+ - uses: actions/download-artifact@v4
112
+ with:
113
+ name: wheels-sdist
114
+ path: wheels-sdist
115
- name: Publish to PyPI
116
uses: PyO3/maturin-action@v1
117
env:
118
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
119
120
command: upload
- args: --non-interactive --skip-existing wheels-*/*
121
+ args: --non-interactive --skip-existing wheels-linux-x86_64/* wheels-macos-x86_64/* wheels-sdist/*
0 commit comments