We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdcc0e8 commit 5505e31Copy full SHA for 5505e31
1 file changed
.github/workflows/ci.yml
@@ -257,6 +257,8 @@ jobs:
257
name: Release
258
runs-on: ubuntu-latest
259
if: "startsWith(github.ref, 'refs/tags/')"
260
+ permissions:
261
+ id-token: write
262
needs:
263
[
264
lint,
@@ -273,13 +275,10 @@ jobs:
273
275
with:
274
276
pattern: wheels-*
277
merge-multiple: true
278
+ - name: Install uv
279
+ uses: astral-sh/setup-uv@v7
280
- name: Publish to PyPI
- uses: PyO3/maturin-action@v1
- env:
- MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
- with:
281
- command: upload
282
- args: --skip-existing *
+ run: uv publish 'wheels-*/*'
283
284
docs:
285
name: Publish docs
0 commit comments