Skip to content

Commit 538c9d0

Browse files
authored
actions: testpypi → pypi
1 parent 5707171 commit 538c9d0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/pypi.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ jobs:
3232
3333
- name: executing setup w/ a particular tag
3434
env:
35-
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
36-
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
35+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
36+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
37+
# NOTE: for use with `twine upload --repository testpypi dist/*`
38+
# TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
39+
# TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
3740
run: |
3841
python3 setup.py sdist bdist_wheel --tag=${{ steps.get_version.outputs.VERSION }}
3942
twine check dist/*
40-
twine upload --repository testpypi dist/*
43+
twine upload dist/*

0 commit comments

Comments
 (0)