Skip to content

Commit

Permalink
Fix name of PyPI token variable
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
michaelosthege authored Jan 14, 2022
1 parent 2f83818 commit 1a0b1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Publish to PyPI
run: |
twine check dist/*
twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN_PYMC} dist/*
twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/*
test-install-job:
needs: release-job
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1a0b1e9

Please sign in to comment.