fix: correct publish command URL in release workflow for TestPyPI
All checks were successful
Publish to TestPyPI / build-publish (release) Successful in 34s
Publish to PyPI / build-publish (release) Has been skipped
CI / test (3.13) (push) Successful in 42s

This commit is contained in:
Alexander Kalinovsky
2025-08-26 20:50:47 +03:00
parent 86a8bdbc02
commit 90b0202f39

View File

@@ -36,5 +36,5 @@ jobs:
uv build
- name: Publish (TestPyPI)
run: |
uv publish --index-url https://test.pypi.org/legacy/ --username __token__ --password ${{ secrets.TESTPYPI_API_TOKEN }}
uv publish --publish-url https://test.pypi.org/legacy/ --username __token__ --password ${{ secrets.TESTPYPI_API_TOKEN }}