From 2e60ef60d7df9a18f38dae6bbd9a813f0c73ad9e Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 24 Mar 2025 20:13:04 +0100 Subject: [PATCH] build: enable python test release and fix release tag Enable back the python test release workflow again. While at it also fix the tag. Signed-off-by: Daniel Wagner --- .github/workflows/release-python.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index c11ae3ba2..526a378d2 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -34,7 +34,6 @@ jobs: upload_test_pypi: needs: [build_sdist] runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/download-artifact@v4 with: @@ -42,7 +41,7 @@ jobs: path: dist - name: Publish package to TestPyPI - uses: pypa/gh-action-pypi-publish@release-v1 + uses: pypa/gh-action-pypi-publish:release-v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} @@ -66,7 +65,7 @@ jobs: name: artifact path: dist - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@release-v1 + uses: pypa/gh-action-pypi-publish:release-v1 if: steps.check-tag.outputs.match == 'true' with: user: __token__