We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f1b01 commit a833d08Copy full SHA for a833d08
generate-change-log.ps1
@@ -10,5 +10,6 @@ if ($env:appveyor_repo_tag -eq "true")
10
# updated changelog and the updated assembly info files
11
git add CHANGELOG.md
12
git commit -m "Update CHANGELOG for v$env:GitVersion_MajorMinorPatch.$env:GitVersion_CommitsSinceVersionSource"
13
- git push origin HEAD:$env:APPVEYOR_REPO_BRANCH
+ # need to wrap the git command bellow so it doesn't throw an error because of redirecting the output to stderr
14
+ "$(git push origin)"
15
}
0 commit comments