diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c23a176..42d8587 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,12 +32,12 @@ jobs: python -m build --sdist --wheel --outdir dist/ . - name: Publish to TestPyPI if: github.event_name != 'release' - uses: pypa/gh-action-pypi-publish@v1.12.2 + uses: pypa/gh-action-pypi-publish@v1.12.3 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ - name: Publish to PyPI if: github.event_name == 'release' && github.event.action == 'published' - uses: pypa/gh-action-pypi-publish@v1.12.2 + uses: pypa/gh-action-pypi-publish@v1.12.3 with: password: ${{ secrets.PYPI_API_TOKEN }}