Skip to content

Commit

Permalink
packaging: stop publishing to test pypi server
Browse files Browse the repository at this point in the history
Publishing fails more often than not because of concurrency issues.

Signed-off-by: Doug Hellmann <[email protected]>
  • Loading branch information
dhellmann committed Jun 12, 2021
1 parent 6f14fd7 commit ee6057b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
- name: Build sdist and wheel
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
# - name: Publish distribution to Test PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.test_pypi_password }}
# repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
Expand Down

0 comments on commit ee6057b

Please sign in to comment.