-
I have a case where i need the release branch to have a prefix like Gitversion is not able to extract the correct verion for the release in this case. I'm expecting |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
As you can see from the documentation, the default pattern is: version-in-branch-pattern: (?<version>[vV]?\d+(\.\d+)?(\.\d+)?).* This pattern should indeed capture |
Beta Was this translation helpful? Give feedback.
-
My understanding was that having a
|
Beta Was this translation helpful? Give feedback.
In the
GitFlow
workflow it is intentionally because the release branch is set to incrementminor
.If you want to patch a version you need to:
release
but thehotfix
branch orGitHubFlow
workflow.Link[1]: GitFlow Examples