We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a7148e commit 9b07736Copy full SHA for 9b07736
.github/workflows/build_wheels.yml
@@ -31,10 +31,10 @@ jobs:
31
32
- name: Upload wheels to PyPI
33
env:
34
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
35
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ TWINE_USERNAME: "__token__"
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
36
run: |
37
- sudo docker run --rm -v $(pwd):/io quay.io/pypa/manylinux2014_x86_64 /bin/bash -c "
+ sudo docker run --rm -v $(pwd):/io -e TWINE_USERNAME -e TWINE_PASSWORD quay.io/pypa/manylinux2014_x86_64 /bin/bash -c "
38
/opt/python/cp311-cp311/bin/pip install twine --root-user-action=ignore &&
39
/opt/python/cp311-cp311/bin/twine upload /io/wheelhouse/*.whl"
40
0 commit comments