Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ jobs:
- name: Publish to PyPI
env:
UV_PUBLISH_TOKEN: ${{ secrets.TANGO_PYPI_TOKEN }}
run: uv publish
# --check-url makes the upload idempotent: uv queries the index first and skips
# files already present instead of failing the run. Without it, any version that
# reached PyPI by another route — a manual `uv publish`, a re-run of this
# workflow — makes the GitHub Release that follows it go red for no real reason.
run: uv publish --check-url https://pypi.org/simple/
Loading