From 1b540a0386b23251c099b8be327b55866b080d5e Mon Sep 17 00:00:00 2001 From: Soroosh Mani <77082694+SorooshMani-NOAA@users.noreply.github.com> Date: Fri, 2 Sep 2022 14:40:10 -0400 Subject: [PATCH] Remove test build upload --- .github/workflows/release.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e72d9669..1e7c8f55 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,6 @@ name: Release to PyPI on: - push: release: types: - published @@ -51,24 +50,6 @@ jobs: with: name: build path: ./dist/*.tar.gz - upload_test_pypi: - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - - name: upload to test PyPI repository - needs: [ build_wheels, build_sdist ] - runs-on: ubuntu-latest - steps: - - name: retrieve wheel(s) and source - uses: actions/download-artifact@v2 - with: - name: build - path: dist - - name: upload wheel(s) and source - uses: pypa/gh-action-pypi-publish@v1.5.0 - with: - repository_url: https://test.pypi.org/legacy/ - user: __token__ - password: ${{ secrets.TEST_PYPI_TOKEN }} upload_pypi: if: github.event_name == 'release' name: publish to PyPI