SK-3004:Update common-release.yml for beta release. - #716
Merged
Conversation
yaswanth-pula-skyflow
requested review from
Devesh-Skyflow,
saketh-skyflow and
skyflow-bharti
July 31, 2026 14:24
|
✅ Gitleaks Findings: No secrets detected. Safe to proceed! |
|
Semgrep Findings: Issues with Error level severity are found (Error is Highest severity in Semgrep), Please resolve the issues before merging. |
Devesh-Skyflow
approved these changes
Jul 31, 2026
skyflow-bharti
approved these changes
Jul 31, 2026
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.
Prevent beta releases from overwriting the
latest/betapointersWhat changed
In
.github/workflows/common-release.yml:Disabled the "latest" tag deployment to S3 — commented out the Set Latest Tag, Deploy Latest Tag to S3, and Remove Latest Tag steps. Releases no longer push a
latestfile to the S3 bucket, so a beta release won't repoint the hosted CDNlatestbuild.Beta npm publish now uses a version-specific dist-tag — changed the beta publish from
npm publish --tag betatonpm publish --tag v<RELEASE_VERSION>. Each beta is published under its own unique tag instead of overwriting the sharedbetadist-tag.Why
Previously every beta release overwrote the shared
latest/betapointers, meaning the newest beta always became the beta build consumers resolved to. This change keeps each beta isolated under its own version tag and stops betas from mutating thelatestpointer, so publishing a new beta no longer clobbers the existing latest beta build.Impact
public/internalrelease flows.v<version>tag rather than relying on a floatingbetatag.