Skip to content

Commit b7e84be

Browse files
committed
Fixed remaining issue
1 parent 81779f7 commit b7e84be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitVersionCore/GitFlow/BranchFinders/HotfixVersionFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SemanticVersion FindVersion(GitVersionContext context)
2626

2727
static string GetSemanticVersionPreReleaseTag(GitVersionContext context, ShortVersion shortVersion, int nbHotfixCommits)
2828
{
29-
var semanticVersionPreReleaseTag = "beta.1";
29+
var semanticVersionPreReleaseTag = context.Configuration.ReleaseBranchTag + ".1";
3030
var tagVersion = RecentTagVersionExtractor.RetrieveMostRecentOptionalTagVersion(context, shortVersion);
3131
if (tagVersion != null)
3232
{

0 commit comments

Comments
 (0)