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 b04ade3 commit df9bffeCopy full SHA for df9bffe
.github/workflows/python-publish.yml
@@ -26,11 +26,11 @@ jobs:
26
run: |
27
python3 setup.py sdist bdist_wheel &> package_setup.log
28
curl --connect-timeout 10 -kI https://test.pypi.org
29
- twine upload -u ${{ secrets.USER }} -p ${{ PASS }} -r testpypi 'dist/*'
+ twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} -r testpypi 'dist/*'
30
31
- name: Publish to PyPI
32
33
34
35
- twine upload -u ${{ secrets.USER }} -p ${{ PASS }} 'dist/*'
+ twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} 'dist/*'
36
0 commit comments