Skip to content

Commit 445ae52

Browse files
committed
fix secret names in publishing action
1 parent bb1c2eb commit 445ae52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
- name: Publish distribution to Test PyPI
3333
uses: pypa/gh-action-pypi-publish@master
3434
with:
35-
password: ${{ secrets.test_pypi_password }}
35+
password: ${{ secrets.TEST_PYPI_PASSWORD }}
3636
repository_url: https://test.pypi.org/legacy/
3737
- name: Publish distribution to PyPI
3838
# This condition prevents PRs from being published as part of
3939
# the test job.
4040
if: startsWith(github.ref, 'refs/tags')
4141
uses: pypa/gh-action-pypi-publish@master
4242
with:
43-
password: ${{ secrets.pypi_password }}
43+
password: ${{ secrets.PYPI_PASSWORD }}

0 commit comments

Comments
 (0)