Skip to content

Commit 39501a5

Browse files
authored
Update Build.yml to correct error with HotFix numbering
1 parent 5a63482 commit 39501a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/Build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
echo "Current Branch: `"$currentBranch`""
5252
echo "Current Tag: `"$currentTag`""
5353
}
54-
$newTag = $currentTag.substring(0,8) + "." + ([int]::parse($latestTagForBranch.substring(9).split('-')[0]) + 1)
54+
$newTag = $latestTagForBranch.substring(0,8) + "." + ([int]::parse($latestTagForBranch.substring(9).split('-')[0]) + 1)
5555
echo "NewTag=$newTag" >> $env:GITHUB_ENV
5656
echo "Current ref: `"${{github.ref}}`""
5757
echo "The version of this installer will be `"$newTag`"."

0 commit comments

Comments
 (0)