We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a63482 commit 39501a5Copy full SHA for 39501a5
.github/workflows/Build.yml
@@ -51,7 +51,7 @@ jobs:
51
echo "Current Branch: `"$currentBranch`""
52
echo "Current Tag: `"$currentTag`""
53
}
54
- $newTag = $currentTag.substring(0,8) + "." + ([int]::parse($latestTagForBranch.substring(9).split('-')[0]) + 1)
+ $newTag = $latestTagForBranch.substring(0,8) + "." + ([int]::parse($latestTagForBranch.substring(9).split('-')[0]) + 1)
55
echo "NewTag=$newTag" >> $env:GITHUB_ENV
56
echo "Current ref: `"${{github.ref}}`""
57
echo "The version of this installer will be `"$newTag`"."
0 commit comments