Skip to content

Commit 414f2ae

Browse files
committed
Updated build release
1 parent e33bef3 commit 414f2ae

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

BuildVersion.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
/>

OneFlow/Publish-Release.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ Invoke-External git fetch $officialRemoteName
4242
Write-Information "Switching to release branch [$officialReleaseBranch]"
4343
Invoke-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+
4552
Write-Information 'Creating tag of this branch as the release'
4653
Invoke-External git tag $tagName '-m' "Official release: $tagName"
4754

0 commit comments

Comments
 (0)