From ee6057bfa35eeaaa1e96cd9fce77eebbf506e5a0 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Sat, 12 Jun 2021 09:33:08 -0400 Subject: [PATCH] packaging: stop publishing to test pypi server Publishing fails more often than not because of concurrency issues. Signed-off-by: Doug Hellmann --- .github/workflows/python-publish.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-publish.yaml b/.github/workflows/python-publish.yaml index 46783f1..3f4511a 100644 --- a/.github/workflows/python-publish.yaml +++ b/.github/workflows/python-publish.yaml @@ -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