docs: add tag format warning to release command#23
Merged
anilcancakir merged 1 commit intomainfrom Apr 6, 2026
Merged
Conversation
The publish.yml workflow triggers on tags matching [0-9]+.[0-9]+.[0-9]+* (no v prefix). Added explicit warning to prevent using v-prefixed tags that silently skip the publish pipeline.
There was a problem hiding this comment.
Pull request overview
Updates the internal release command documentation to prevent CI/CD publish failures caused by creating v-prefixed git tags, which do not match the tag trigger pattern used by the publish.yml workflow.
Changes:
- Added a prominent warning that release tags must be
{version}with no leadingv. - Documented the exact tag pattern that triggers the
publish.ymlworkflow.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
.claude/commands/release.mdabout tag format: NOvprefixpublish.ymltriggers on[0-9]+.[0-9]+.[0-9]+*— av-prefixed tag silently skips the pipelineContext
During 0.0.1-alpha.10 release, the tag was initially created as
v0.0.1-alpha.10which didn't trigger publish. Had to delete and recreate as0.0.1-alpha.10.