feat: add release candidate tagging workflow#212
Draft
randy-concepcion wants to merge 2 commits into
Draft
Conversation
randy-concepcion
force-pushed
the
AIPLAT-911-rc-tagging-workflow
branch
2 times, most recently
from
July 23, 2026 06:47
683cd86 to
dede27e
Compare
randy-concepcion
force-pushed
the
AIPLAT-911-rc-tagging-workflow
branch
from
July 23, 2026 07:07
dede27e to
709af8c
Compare
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.
What's New
.github/workflows/tag-release-candidate.yml, aworkflow_dispatchworkflow that tags an existing main-build image in GAR as a release candidate (vX.Y.Z-rc.N)gcloud artifacts docker tags addmain, reads the version frompyproject.toml, and derives the RC tagartifact-writerWorkload Identity setup, no new secrets or permissionsContext
This PR is part of AIPLAT-911 (per-environment image tiers). It establishes the stage tier for MLPA: dev runs
latest, stage will pin to an RC tag, and prod stays on stable semver.The workflow promotes a selected main-build image to
vX.Y.Z-rc.Nby adding a tag to the existing digest in GAR. It does not rebuild, pull, or push any image. A separate follow-up PR will add a stable promotion workflow triggered on GitHub release.Testing
Not yet run. A
workflow_dispatchworkflow only appears in the Actions "Run workflow" UI after it lands on the default branch, so it can't be triggered from the PR branch. Will validate post-merge by promoting a knownmainbuild and confirming the RC tag lands on the expected digest.How to use
From the Actions tab, select "Tag Release Candidate in GAR", click "Run workflow" on
main, and provide:The workflow produces a job summary table with the commit, source tag, version, RC tag, and digest.
Related