From 6717b1fee0e39618f5e8d41025919e8e0481589f Mon Sep 17 00:00:00 2001 From: Dieter Werthmuller Date: Fri, 12 Dec 2025 11:18:06 +0100 Subject: [PATCH] Fix GHA --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index c7e1082..9d40e23 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -139,7 +139,7 @@ jobs: - name: Publish to Test PyPI if: success() - uses: pypa/gh-action-pypi-publish@release/v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.TEST_PYPI_PASSWORD }} @@ -151,7 +151,7 @@ jobs: - name: Publish to PyPI # Only for releases if: success() && github.event_name == 'release' - uses: pypa/gh-action-pypi-publish@release/v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }}