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 dc3bfdb commit b19c003Copy full SHA for b19c003
.github/workflows/python-package.yml
@@ -51,5 +51,10 @@ jobs:
51
steps:
52
# retrieve your distributions here
53
54
- - name: Publish package distributions to PyPI
55
- uses: pypa/gh-action-pypi-publish@release/v1
+ - name: Publish package
+ env:
56
+ TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
57
+ TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
58
+ run: |
59
+ python -m pip install --upgrade twine
60
+ twine upload dist/*
0 commit comments