Skip to content

Commit 3431f24

Browse files
committed
chore: try using maturin instead of twine
1 parent 1f96919 commit 3431f24

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/python-release.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,6 @@ jobs:
9797
python-version: 3.x
9898

9999
- name: Publish to PyPI
100-
env:
101-
TWINE_USERNAME: __token__
102-
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
103100
run: |
104-
pip install twine
105-
twine upload --skip-existing --verbose wheels/* --repository-url https://test.pypi.org/legacy
101+
pip install maturin
102+
maturin upload --repository-url https://test.pypi.org/legacy/ --username __token__ --password ${{ secrets.PYPI_TOKEN }} wheels/*

0 commit comments

Comments
 (0)