Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 1 addition & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,17 +228,8 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install maturin
run: pip install maturin

- name: 🚀 Publish all artifacts to PyPI
env:
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 }} *.whl *.tar.gz **/*.whl **/*.tar.gz dist/*
run: uv publish dist/* --token ${{ secrets.MATURIN_PYPI_TOKEN }}
# pypi-publish:
# runs-on: ubuntu-latest
# needs: [version-bump]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Publish to PyPI
run: uv publish dist --token ${{ secrets.MATURIN_PYPI_TOKEN }} *.whl dist/*
run: uv publish dist/* --token ${{ secrets.MATURIN_PYPI_TOKEN }}
Loading