File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,7 @@ name: (Py)Build and Publish to PyPi
33on :
44 workflow_dispatch :
55
6- env :
7- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
8- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
9- TWINE_PYPI_ARGS : " "
10-
116jobs :
12-
137 wheels :
148 name : Build sdist and wheel
159 runs-on : ubuntu-latest
5347
5448 - name : Publish wheels to PyPI
5549 run : |
56- python3 -m pip install twine
57- ls -la dist/
58- twine upload ${{ env.TWINE_PYPI_ARGS }} --skip-existing dist/*.whl
59- twine upload ${{ env.TWINE_PYPI_ARGS }} dist/*tar.gz
50+ python3 -m pip install twine
51+ python3 -m twine upload --verbose --skip-existing dist/*.whl
52+ python3 -m twine upload --verbose --skip-existing dist/*tar.gz
53+ env :
54+ TWINE_USERNAME : __token__
55+ TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
You can’t perform that action at this time.
0 commit comments