Skip to content

Commit df9bffe

Browse files
authored
Update python-publish.yml
1 parent b04ade3 commit df9bffe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
run: |
2727
python3 setup.py sdist bdist_wheel &> package_setup.log
2828
curl --connect-timeout 10 -kI https://test.pypi.org
29-
twine upload -u ${{ secrets.USER }} -p ${{ PASS }} -r testpypi 'dist/*'
29+
twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} -r testpypi 'dist/*'
3030
3131
- name: Publish to PyPI
3232
run: |
3333
python3 setup.py sdist bdist_wheel &> package_setup.log
3434
curl --connect-timeout 10 -kI https://test.pypi.org
35-
twine upload -u ${{ secrets.USER }} -p ${{ PASS }} 'dist/*'
35+
twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} 'dist/*'
3636

0 commit comments

Comments
 (0)