From fdabb9db552d0817642a4b4b279c3efe7d662867 Mon Sep 17 00:00:00 2001 From: Andrew Pikul Date: Wed, 29 Jan 2025 11:17:05 -0500 Subject: [PATCH] Fix testpypi urls: I don't remember how or why, but I remember that testpypi needs a . at the end of the URL, and I can't remember where I found that, or why it would be true --- .github/workflows/publish_testpypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_testpypi.yml b/.github/workflows/publish_testpypi.yml index 370489f6..eb64d814 100644 --- a/.github/workflows/publish_testpypi.yml +++ b/.github/workflows/publish_testpypi.yml @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest environment: name: testpypi - url: https://pypi.org/p/choreographer + url: https://test.pypi.org/p/choreographer # Signs this workflow so pypi trusts it permissions: id-token: write @@ -80,4 +80,4 @@ jobs: - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - repository-url: https://test.pypi.org/legacy + repository-url: https://test.pypi.org/legacy/.