Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,12 @@ jobs:

- name: 🚀 Publish all artifacts to PyPI
env:
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
# MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
UV_PUBLISH_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
# Maturin finds all files in the directory passed via the --find-wheel option.
# It automatically skips existing files and publishes everything it finds.
# run: maturin publish --skip-existing --repository pypi --username __token__ --password ${{ secrets.MATURIN_PYPI_TOKEN }}
run: uv publish dist --token ${{ secrets.MATURIN_PYPI_TOKEN }} --index pypi
run: uv publish dist --token ${{ secrets.MATURIN_PYPI_TOKEN }}
# pypi-publish:
# runs-on: ubuntu-latest
# needs: [version-bump]
Expand Down
Loading