From efbaab2f7130c54a6c618c300cf842c217a2f070 Mon Sep 17 00:00:00 2001 From: Mackenzie Mathis Date: Sat, 2 Nov 2024 19:19:29 +0100 Subject: [PATCH] Update release-pypi.yml remove test pypi --- .github/workflows/release-pypi.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 1b99f95..9a60dc9 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -29,16 +29,6 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Build and publish to Test PyPI - if: ${{ (github.ref != 'refs/heads/main') && (github.event.label.name == 'release') }} - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }} - run: | - make dist - ls dist/ - tar tvf dist/aros_node-*.tar.gz - python3 -m twine upload --repository testpypi dist/* - name: Build and publish to PyPI if: ${{ github.event_name == 'push' }}