Skip to content

Commit

Permalink
Fixed passwords for GH Actions for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
sametz committed Feb 22, 2020
1 parent 03566cd commit fefd2cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
path: dist
- name: Publish to PyPI
env:
PYPI_PASSWORD: ${{ secrets.test_pypi_password }}
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install twine
python -m twine upload --skip-existing -u __token__ -p ${PYPI_PASSWORD} dist/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
path: dist
- name: Publish to PyPI
env:
PYPI_PASSWORD: ${{ secrets.test_pypi_password }}
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install twine
python -m twine upload --skip-existing -u __token__ -p ${PYPI_PASSWORD} dist/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make_sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
path: dist
- name: Publish to TestPyPI
env:
PYPI_PASSWORD: ${{ secrets.test_pypi_password }}
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install twine
python -m twine check dist/*
Expand Down

0 comments on commit fefd2cf

Please sign in to comment.