Skip to content

Commit 3e25da8

Browse files
committed
Added github secret
1 parent 3c008c3 commit 3e25da8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Publish to TestPyPI
2727
env:
2828
TWINE_USERNAME: '__token__'
29-
TWINE_PASSWORD: ${{ secrets.test_pypi_token }}
29+
TWINE_PASSWORD: ${{ secrets.PYPI_AUTOMATIC_RELEASE_TOKEN }}
3030
run: |
3131
twine upload --repository testpypi --skip-existing --verbose dist/*
3232
- name: Publish to PyPI
3333
env:
3434
TWINE_USERNAME: '__token__'
35-
TWINE_PASSWORD: ${{ secrets.pypi_password }}
35+
TWINE_PASSWORD: ${{ secrets.PYPI_AUTOMATIC_RELEASE_TOKEN }}
3636
run: |
3737
twine upload --skip-existing --verbose dist/*

0 commit comments

Comments
 (0)