We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bea8dc commit 39a7cfcCopy full SHA for 39a7cfc
1 file changed
.github/workflows/release.yml
@@ -30,10 +30,12 @@ jobs:
30
run: python -m build
31
32
- name: Publish to PyPI
33
- uses: pypa/gh-action-pypi-publish@v1.8.14
34
- with:
35
- password: ${{ secrets.PYPI_API_TOKEN }}
36
- skip-existing: true
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
+ run: |
37
+ pip install twine
38
+ twine upload --skip-existing dist/*
39
40
- name: Create GitHub Release
41
env:
0 commit comments