publish a release tag after the artifacts are uploaded. - #14598
Open
copybara-service[bot] wants to merge 1 commit into
Open
publish a release tag after the artifacts are uploaded.#14598copybara-service[bot] wants to merge 1 commit into
copybara-service[bot] wants to merge 1 commit into
Conversation
copybara-service
Bot
requested review from
EtiennePerot and
relkochta
as code owners
September 3, 2026 23:06
copybara-service
Bot
force-pushed
the
test/cl975878725
branch
2 times, most recently
from
September 3, 2026 23:59
8513b92 to
6cba58f
Compare
A release tag was created before the release built, so a failed build left a tag on GitHub with nothing behind it. release-20260824.0 is an example: the build failed, but users still see a release tag that they cannot install.
Before
```
make tag RELEASE_COMMIT=<sha> RELEASE_NAME=20260831.0 RELEASE_NOTES=<file>
│
tag_release.sh └─ pushes the annotated tag as release-20260831.0 ← published immediately
│
┌────────────┴────────────┐
│ │
Buildkite GitHub Actions
(triggered by the tag) release_mirror.yml
├─ make artifacts ├─ poll GCS for artifacts (240 min timeout)
├─ make release ├─ verify sha512
└─ gcloud storage cp └─ create the GitHub Release
→ gs://gvisor/releases/
```
After
```
make tag RELEASE_COMMIT=<sha> RELEASE_NAME=20260831.0 RELEASE_NOTES=<file>
│
tag_release.sh └─ pushes the annotated tag as staging-release-20260831.0
│
Buildkite ├─ tag.sh stage restore release-20260831.0 locally (version stamping)
(triggered by ├─ make artifacts x86_64 + aarch64
the staging tag) ├─ make release sign, lay out repo/
├─ gcloud storage cp → gs://gvisor/releases/
└─ tag.sh publish push release-20260831.0, delete staging tag
│
GitHub Actions └─ release_mirror.yml verify sha512, create the GitHub Release
```
update #14398
FUTURE_COPYBARA_INTEGRATE_REVIEW=#14529 from milantracy:githubrelease 3760b72
PiperOrigin-RevId: 975878725
copybara-service
Bot
force-pushed
the
test/cl975878725
branch
from
September 4, 2026 01:42
6cba58f to
04d054c
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.
publish a release tag after the artifacts are uploaded.
A release tag was created before the release built, so a failed build left a tag on GitHub with nothing behind it. release-20260824.0 is an example: the build failed, but users still see a release tag that they cannot install.
Before
After
update #14398
FUTURE_COPYBARA_INTEGRATE_REVIEW=#14529 from milantracy:githubrelease 3760b72