File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ will be based on
55<BuildVersionData
66 BuildMajor = " 5"
77 BuildMinor = " 0"
8- BuildPatch = " 1 "
8+ BuildPatch = " 3 "
99 PreReleaseName = " alpha"
1010/>
Original file line number Diff line number Diff line change @@ -42,6 +42,13 @@ Invoke-External git fetch $officialRemoteName
4242Write-Information " Switching to release branch [$officialReleaseBranch ]"
4343Invoke-External git switch ' -C' $releasebranch $officialReleaseBranch
4444
45+ $confirmation = Read-Host " Are you Sure You Want To Proceed:"
46+ if ($confirmation -ne ' y' )
47+ {
48+ Write-Host " User canceled operation"
49+ return
50+ }
51+
4552Write-Information ' Creating tag of this branch as the release'
4653Invoke-External git tag $tagName ' -m' " Official release: $tagName "
4754
You can’t perform that action at this time.
0 commit comments