From bd36a1e20347e76bab280b79f927a44c1aa1ccd2 Mon Sep 17 00:00:00 2001 From: Graham Coster Date: Thu, 1 Feb 2024 18:20:48 +1100 Subject: [PATCH] Fix PyPi deprecations --- .github/workflows/publish-to-test-pypi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 2c09bbb..7959b20 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -58,13 +58,13 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ verbose: true - skip_existing: true + skip-existing: true - name: 📦 Publish package to PyPI if: startsWith(github.ref, 'refs/tags/v') uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} verbose: true - skip_existing: true + skip-existing: true