Skip to content

Commit

Permalink
Update Build.yml to correct error with HotFix numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueFinBima authored Dec 8, 2024
1 parent 5a63482 commit 39501a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
echo "Current Branch: `"$currentBranch`""
echo "Current Tag: `"$currentTag`""
}
$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)
echo "NewTag=$newTag" >> $env:GITHUB_ENV
echo "Current ref: `"${{github.ref}}`""
echo "The version of this installer will be `"$newTag`"."
Expand Down

0 comments on commit 39501a5

Please sign in to comment.