We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e978655 commit 33f01f7Copy full SHA for 33f01f7
1 file changed
scripts/release
@@ -13,4 +13,7 @@ git push --tags
13
github_changelog_generator --issue-line-labels="ALL" --release-url="https://github.com/hyperdriven/hyperdrive/releases/tag/%s"
14
git commit CHANGELOG.md -m "updates changelog for ${1}"
15
git push origin master
16
-hub release create -m "${1}\n\n${2}" ${1}
+rm -f .git/RELEASE_EDITMSG
17
+touch .git/RELEASE_EDITMSG
18
+echo "${1}\n\n${2}" >> .git/RELEASE_EDITMSG
19
+hub release create -f .git/RELEASE_EDITMSG ${1}
0 commit comments