More trickery

This commit is contained in:
Linus Probert 2018-05-17 09:58:18 +02:00
parent fa0dbe2933
commit a551c52394
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ project(breakhack C)
set(breakhack_GAME_TITLE "BreakHack")
set(breakhack_MAJOR_VERSION 0)
set(breakhack_MINOR_VERSION 1)
set(breakhack_PATCH_VERSION 5)
set(breakhack_PATCH_VERSION 4)
set(breakhack_RELEASE_TYPE "(early access)")
include(FindLua)

View File

@ -10,8 +10,10 @@ git log --oneline early-access-v$LAST_VERSION..early-access-v$NEXT_VERSION > bui
git add build/releasenotes/early-access-v$NEXT_VERSION
git commit -a -m"Patch version raised to $NEXT_VERSION"
# Push to repo
git push
# Create the tag
git tag early-access-v$NEXT_VERSION
git push early-access-v$NEXT_VERSION
# Push to repo
git push --follow-tags