We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
maturin
twine
1 parent 1f96919 commit 3431f24Copy full SHA for 3431f24
1 file changed
.github/workflows/python-release.yaml
@@ -97,9 +97,6 @@ jobs:
97
python-version: 3.x
98
99
- name: Publish to PyPI
100
- env:
101
- TWINE_USERNAME: __token__
102
- TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
103
run: |
104
- pip install twine
105
- twine upload --skip-existing --verbose wheels/* --repository-url https://test.pypi.org/legacy
+ pip install maturin
+ maturin upload --repository-url https://test.pypi.org/legacy/ --username __token__ --password ${{ secrets.PYPI_TOKEN }} wheels/*
0 commit comments