Skip to content

Commit fdabb9d

Browse files
committed
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
1 parent 6491585 commit fdabb9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_testpypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
environment:
6565
name: testpypi
66-
url: https://pypi.org/p/choreographer
66+
url: https://test.pypi.org/p/choreographer
6767
# Signs this workflow so pypi trusts it
6868
permissions:
6969
id-token: write
@@ -80,4 +80,4 @@ jobs:
8080
- name: Publish package distributions to PyPI
8181
uses: pypa/gh-action-pypi-publish@release/v1
8282
with:
83-
repository-url: https://test.pypi.org/legacy
83+
repository-url: https://test.pypi.org/legacy/.

0 commit comments

Comments
 (0)