We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 051fb11 commit 683305cCopy full SHA for 683305c
1 file changed
.github/workflows/python-publish.yml
@@ -22,8 +22,9 @@ jobs:
22
pip install setuptools wheel twine
23
- name: Build and publish
24
env:
25
- TWINE_USERNAME: ${{ secrets.PMH_PYPI_USER }}
26
- TWINE_PASSWORD: ${{ secrets.PMH_PYPI_PASS }}
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
27
run: |
28
python setup.py sdist bdist_wheel
29
+ twine check dist/*
30
twine upload dist/*
0 commit comments