From 25c7106b9749f9675e1b166a18b2c97664160086 Mon Sep 17 00:00:00 2001 From: Stephen Kent Date: Tue, 14 Jan 2025 00:01:18 -0800 Subject: [PATCH] Update `gh-action-pypi-publish` argument names to resolve warnings --- .github/workflows/cd.yml | 4 ++-- {{cookiecutter.project_name}}/.github/workflows/cd.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 095bad0..09c28d5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -53,8 +53,8 @@ jobs: if: ${{ env.ENABLE_TEST_PYPI_PUBLISH == 'true' }} with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ - skip_existing: true + repository-url: https://test.pypi.org/legacy/ + skip-existing: true - name: ☢️ Publish to PyPI if: ${{ env.ENABLE_PYPI_PUBLISH == 'true' }} diff --git a/{{cookiecutter.project_name}}/.github/workflows/cd.yml b/{{cookiecutter.project_name}}/.github/workflows/cd.yml index 1ff7fbc..831b78c 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/cd.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/cd.yml @@ -50,8 +50,8 @@ jobs: if: ${{ "{{" }} env.ENABLE_TEST_PYPI_PUBLISH == 'true' }} with: password: ${{ "{{" }} secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ - skip_existing: true + repository-url: https://test.pypi.org/legacy/ + skip-existing: true - name: ☢️ Publish to PyPI if: ${{ "{{" }} env.ENABLE_PYPI_PUBLISH == 'true' }}