Correct CI's invocation of twine

This commit is contained in:
David Robertson 2021-11-24 13:17:56 +00:00
parent af3d6c8ab7
commit ab561b53bd
No known key found for this signature in database
GPG key ID: 903ECE108A39DEDD

View file

@ -20,7 +20,7 @@ jobs:
run: "python -m build" run: "python -m build"
- name: "Upload to PyPI" - name: "Upload to PyPI"
run: "python -m twine --repository testpypi upload dist/*" run: "python -m twine upload --repository testpypi dist/*"
env: env:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: "${{ secrets.TESTPYPI_API_TOKEN }}" TWINE_PASSWORD: "${{ secrets.TESTPYPI_API_TOKEN }}"