|
@@ -16,12 +16,12 @@ try {
|
|
|
Write-Host "Pulling latest from upstream branch $branch"
|
|
|
git pull upstream $branch
|
|
|
|
|
|
- Write-Host "Creating empty commit with message $releaseMessage"
|
|
|
- git commit --allow-empty -m $releaseMessage
|
|
|
-
|
|
|
Write-Host "Tagging release with tag $tag"
|
|
|
git tag $tag -a -m $releaseMessage
|
|
|
|
|
|
+ Write-Host "Creating empty commit with message $releaseMessage"
|
|
|
+ git commit --allow-empty -m $releaseMessage
|
|
|
+
|
|
|
Write-Host "Pushing changes to upstream"
|
|
|
git push --atomic upstream $branch $tag
|
|
|
} catch {
|