Skip to content

Commit 3775eda

Browse files
committed
lower case secret names
1 parent 2bf791b commit 3775eda

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,7 +32,7 @@ jobs:
3232
- name: Publish distribution to Test PyPI
3333
uses: pypa/gh-action-pypi-publish@v1.6.4
3434
with:
35-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
35+
password: ${{ secrets.test_pypi_api_token }}
3636
repository_url: https://test.pypi.org/legacy/
3737
skip_existing: true
3838
verbose: true
@@ -43,6 +43,6 @@ jobs:
4343
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
4444
uses: pypa/gh-action-pypi-publish@v1.6.4
4545
with:
46-
password: ${{ secrets.PYPI_API_TOKEN }}
46+
password: ${{ secrets.pypi_api_token }}
4747
verbose: true
4848
print_hash: true

0 commit comments

Comments
 (0)