From c47966178e0e62f14bf91b3656c9a266cf5c02dc Mon Sep 17 00:00:00 2001 From: studioj <22102283+studioj@users.noreply.github.com> Date: Sat, 23 Nov 2024 11:34:12 +0100 Subject: [PATCH 1/2] debug: run a verbose test pypi release to see the errors --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index abb29e773..e05e4a9b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,7 @@ jobs: github.event_name == 'release' uses: pypa/gh-action-pypi-publish@release/v1 with: + verbose: true password: ${{ secrets.testpypi_password }} repository_url: https://test.pypi.org/legacy/ From c96eed51f2d2824d49250dadf59a5b9e54bea488 Mon Sep 17 00:00:00 2001 From: studioj <22102283+studioj@users.noreply.github.com> Date: Sat, 23 Nov 2024 11:39:06 +0100 Subject: [PATCH 2/2] fix: replace deprecated repository_url by repository-url --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e05e4a9b1..706f1f7bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: with: verbose: true password: ${{ secrets.testpypi_password }} - repository_url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ - name: Publish to pypi.org if: >- # "create" workflows run separately from "push" & "pull_request"