Add Cloud Build pipeline for tag-triggered AR uploads#18
Merged
Conversation
Builds sdist + wheel via 'uv build' against the tagged commit and publishes both to the colab-cli Python repo in Artifact Registry (us-central1-python.pkg.dev/colab-cli-external/colab-cli). Hatch-vcs derives the version from the tag, so the build unshallows the GitHub checkout to make 'git describe' return the clean tag name.
sethtroisi
approved these changes
May 18, 2026
The uv:python3.13-bookworm-slim image lacks a git binary, which causes hatch-vcs to fail with 'not a git repository' during 'uv build'. Switch to the non-slim bookworm variant so git is available for the version derivation. Also simplify the shell prologue in each step to 'set -e' (the existing 'set -euo pipefail' was overkill: no pipelines are used, and Cloud Build expands substitutions before bash sees them so '-u' adds no coverage).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds sdist + wheel via 'uv build' against the tagged commit and publishes both to the colab-cli Python repo in Artifact Registry (us-central1-python.pkg.dev/colab-cli-external/colab-cli). Hatch-vcs derives the version from the tag, so the build unshallows the GitHub checkout to make 'git describe' return the clean tag name.