From e8dffa1a5267baeedcc5dbc40609e325738b40cb Mon Sep 17 00:00:00 2001 From: David Runemalm Date: Sat, 2 Mar 2024 14:48:46 +0700 Subject: [PATCH] Fix action version in new workflow. --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 783827d..698c2b8 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -41,7 +41,7 @@ jobs: path: dist/ - name: Publish to Test PyPI - uses: pypa/gh-action-pypi-publish@release/v1.8.12 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_TOKEN }} @@ -69,7 +69,7 @@ jobs: echo "::set-output name=RELEASE_VERSION::$version" - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1.8.12 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }}