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 5ccb44b commit e4b68c4Copy full SHA for e4b68c4
.github/workflows/release.yml
@@ -56,3 +56,12 @@ jobs:
56
uses: softprops/action-gh-release@v1
57
with:
58
files: all_dist/*
59
+
60
+ - name: Upload to PyPI
61
+ if: startsWith(github.ref, 'refs/tags/')
62
+ run: |
63
+ pip install --upgrade twine
64
+ twine upload all_dist/*
65
+ env:
66
+ TWINE_USERNAME: __token__
67
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments