We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c48d1af + fbacc7a commit cc567c1Copy full SHA for cc567c1
1 file changed
Scripts/VersionManager.ps1
@@ -14,17 +14,16 @@ function New-Tag
14
15
if ($Branch -eq "release")
16
{
17
- $version = ([decimal]$currentVersion + 0.1).ToString()
+ $version = ([decimal]$version + 0.1).ToString()
18
$prefix = "Beta-"
19
}
20
if ($Branch -eq "develop")
21
22
23
$prefix = "Dev-"
24
25
if ($Branch -eq "hotfix")
26
27
28
$prefix = "HF-"
29
30
0 commit comments