From 106796df8fa0b097c077a978d716bab888982ab8 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 24 Mar 2025 19:58:00 +0100 Subject: [PATCH] build: fix python release workflows Use the latest stable version of the action. Signed-off-by: Daniel Wagner --- .github/workflows/release-python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 9ae58a070..c11ae3ba2 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -42,11 +42,11 @@ jobs: path: dist - name: Publish package to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.12 + uses: pypa/gh-action-pypi-publish@release-v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ upload_pypi: needs: [build_sdist] @@ -66,7 +66,7 @@ jobs: name: artifact path: dist - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@release/v1.12 + uses: pypa/gh-action-pypi-publish@release-v1 if: steps.check-tag.outputs.match == 'true' with: user: __token__