Skip to content

Commit c28f7c9

Browse files
authored
re-add testpypi publish step (#2991)
1 parent b6a6f75 commit c28f7c9

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

Diff for: .github/workflows/release.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,13 @@ jobs:
8181
# rejected by pypi (e.g "3 - Beta"). This would cause a failure during the
8282
# middle of the package upload causing the action to fail, and certain packages
8383
# might have already been updated, this would be bad.
84-
# EDIT: 5/31/2024 - TestPypi now requires a verified email. Commenting out as a temporary measure
85-
# until we found TestPypi credentials.
86-
# - name: Publish to TestPyPI
87-
# env:
88-
# TWINE_USERNAME: '__token__'
89-
# TWINE_PASSWORD: ${{ secrets.test_pypi_token }}
90-
# run: |
91-
# twine upload --repository testpypi --skip-existing --verbose dist/*
84+
85+
- name: Publish to TestPyPI
86+
env:
87+
TWINE_USERNAME: '__token__'
88+
TWINE_PASSWORD: ${{ secrets.test_pypi_token }}
89+
run: |
90+
twine upload --repository testpypi --skip-existing --verbose dist/*
9291
9392
- name: Publish to PyPI
9493
env:

0 commit comments

Comments
 (0)