Skip to content

Commit 1a0b1e9

Browse files
Fix name of PyPI token variable
The changed line accesses the environment variable "PYPI_TOKEN" that's initialized from the secret further up. When the secret name was changed, we had accidentally changed the name of the environment variable only in this line.
1 parent 2f83818 commit 1a0b1e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Publish to PyPI
4040
run: |
4141
twine check dist/*
42-
twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN_PYMC} dist/*
42+
twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/*
4343
test-install-job:
4444
needs: release-job
4545
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)