We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03c9e5 commit 939a6b7Copy full SHA for 939a6b7
1 file changed
.github/workflows/pypi-publish.yaml
@@ -27,4 +27,9 @@ jobs:
27
GHACTION_TAG: ${{ steps.getTag.outputs.tag }}
28
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
29
run: pipenv run python setup.py verify
30
-
+ - name: Publish to pypi
31
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
32
+ uses: pypa/gh-action-pypi-publish@v1.4.1
33
+ with:
34
+ user: __token__
35
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments