From 640cc821036547fcfee8bfacf2a285e1c0d608ee Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Fri, 16 Apr 2021 15:28:28 +0800 Subject: [PATCH] 1.2.29 get ready for automated releases --- bin/promote-release.sh | 9 +++++++++ version.properties | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 bin/promote-release.sh diff --git a/bin/promote-release.sh b/bin/promote-release.sh new file mode 100755 index 000000000..98e3d6748 --- /dev/null +++ b/bin/promote-release.sh @@ -0,0 +1,9 @@ +echo "This script is only for developers who are publishing new builds on github. Most users don't need it" + +VERSION=`bin/buildinfo.py` + +# Must have a V prefix to trigger github +git tag "v${VERSION}" +git push root "v${VERSION}" # push the tag + +echo "Tag ${VERSION} pushed to github, github actions should now be building the draft release. If it seems good, click to publish it" diff --git a/version.properties b/version.properties index d132579fb..e0d2b5841 100644 --- a/version.properties +++ b/version.properties @@ -1,4 +1,4 @@ [VERSION] major = 1 minor = 2 -build = 28 +build = 29