From 8c74dd3374f50c6db681e53f52275bef53016b4d Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Thu, 6 Oct 2022 15:45:18 -0400 Subject: [PATCH] Remove test pypi upload step (#131) https://github.com/Chia-Network/chia-blockchain/commit/e7c0bcfcb46392dcf66298ddac692c8e168e1619 --- .github/workflows/build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ad3350c..8f87d9d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -346,12 +346,3 @@ jobs: TWINE_NON_INTERACTIVE: 1 TWINE_PASSWORD: ${{ secrets.pypi_password }} run: twine upload --non-interactive --skip-existing --verbose 'dist/*' - - - name: Publish distribution to Test PyPI - if: steps.check_secrets.outputs.HAS_SECRET - env: - TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/ - TWINE_USERNAME: __token__ - TWINE_NON_INTERACTIVE: 1 - TWINE_PASSWORD: ${{ secrets.test_pypi_password }} - run: twine upload --non-interactive --skip-existing --verbose 'dist/*'