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