From d7463fd566f36ea8e536afa26b949646c07c0bec Mon Sep 17 00:00:00 2001 From: AsmodeusRex Date: Tue, 20 Dec 2022 16:36:03 -0800 Subject: [PATCH] Update deploy script --- deploy.ps1 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/deploy.ps1 b/deploy.ps1 index ffbd9fe..492c4a1 100644 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -1,3 +1,6 @@ +Write-Output "Wait! Did you update LATEST_CHANGELOG?" +pause + $l = ".\LATEST_CHANGELOG" $c = ".\changelog.txt" $m = "Update to " + $args[0] @@ -18,5 +21,6 @@ $( ) | Set-Content $c git add $l $c -git commit -q --amend --no-edit -git tag $args[0] \ No newline at end of file +git commit -q -m $m +git tag $args[0] +git push origin $args[0] \ No newline at end of file