fix: revert VERSION extraction to handle simple v-prefixed tags#442
Merged
gjtorikian merged 1 commit intomainfrom Feb 10, 2026
Merged
fix: revert VERSION extraction to handle simple v-prefixed tags#442gjtorikian merged 1 commit intomainfrom
gjtorikian merged 1 commit intomainfrom
Conversation
The `##*/v` pattern requires a `/` before `v` to match, so it doesn't strip the `v` from simple `v6.1.0` tags. Now that tags use `v6.1.0` format, the original `#v` pattern is correct. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
gjtorikian
approved these changes
Feb 10, 2026
Greptile OverviewGreptile SummaryThis PR correctly reverts the
Confidence Score: 5/5
Important Files Changed
|
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.
Summary
Reverts the
VERSIONextraction inrelease.ymlfrom${GITHUB_REF_NAME##*/v}back to${GITHUB_REF_NAME#v}.The
##*/vpattern requires a/beforevto match, so with simplev6.1.0tags (from theinclude-component-in-tag: falsefix in #441), it returns the fullv6.1.0string instead of6.1.0, causinggem pushto look forpkg/workos-v6.1.0.geminstead ofpkg/workos-6.1.0.gem.Test plan
v6.1.0release and tag