1.2.29 get ready for automated releases

This commit is contained in:
Kevin Hester 2021-04-16 15:28:28 +08:00
parent 531600f5ab
commit 640cc82103
2 changed files with 10 additions and 1 deletions

9
bin/promote-release.sh Executable file
View File

@ -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"

View File

@ -1,4 +1,4 @@
[VERSION]
major = 1
minor = 2
build = 28
build = 29