Skip to content

Commit 934bcb3

Browse files
committed
[CI] Skip picking up build number and fully use the tag version
1 parent 02765c0 commit 934bcb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/BuildContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public BuildContext(ICakeContext context) : base(context)
5252
throw new Exception($"Invalid tag: {baseVersion}");
5353

5454
VersionBase = baseVersion[1..];
55-
Version = $"{VersionBase}.{workflow.RunNumber}";
55+
Version = VersionBase;
5656
}
5757
else if (workflow.RefType == GitHubActionsRefType.Branch && workflow.RefName != "refs/heads/master")
5858
{

0 commit comments

Comments
 (0)