MAPG-28 add update-version.sh and adapt deploy py script to that
This commit is contained in:
parent
b3caf1fb38
commit
4a9cf8a217
@ -74,8 +74,7 @@ def updateAppInWorktree(worktreePath):
|
|||||||
subprocess.call([worktreePath + "/scripts/update.sh"], cwd=worktreePath)
|
subprocess.call([worktreePath + "/scripts/update.sh"], cwd=worktreePath)
|
||||||
|
|
||||||
def updateAppVersionInWorktree(worktreePath):
|
def updateAppVersionInWorktree(worktreePath):
|
||||||
pass
|
subprocess.call([worktreePath + "/scripts/update-version.sh"], cwd=worktreePath)
|
||||||
#subprocess.call([worktreePath + "/scripts/update-version.sh"], cwd=worktreePath)
|
|
||||||
|
|
||||||
worktrees = getDataForWorktrees()
|
worktrees = getDataForWorktrees()
|
||||||
|
|
||||||
@ -111,10 +110,6 @@ if developmentWorktree.revision != developmentWorktree.newRevision:
|
|||||||
elif developmentWorktree.version != developmentWorktree.newVersion:
|
elif developmentWorktree.version != developmentWorktree.newVersion:
|
||||||
print("-> DEVELOPMENT " + developmentWorktree.path + "'s version info will be UPDATED")
|
print("-> DEVELOPMENT " + developmentWorktree.path + "'s version info will be UPDATED")
|
||||||
|
|
||||||
checkoutWorktree(developmentWorktree.path, developmentWorktree.branch)
|
|
||||||
|
|
||||||
print(developmentWorktree.path + " is checked out to " + developmentWorktree.branch)
|
|
||||||
|
|
||||||
updateAppVersionInWorktree(developmentWorktree.path)
|
updateAppVersionInWorktree(developmentWorktree.path)
|
||||||
|
|
||||||
print("MapGuesser version is updated in " + developmentWorktree.path)
|
print("MapGuesser version is updated in " + developmentWorktree.path)
|
||||||
|
17
scripts/update-version.sh
Executable file
17
scripts/update-version.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ROOT_DIR=$(dirname $(readlink -f "$0"))/..
|
||||||
|
|
||||||
|
. ${ROOT_DIR}/.env
|
||||||
|
|
||||||
|
cd ${ROOT_DIR}
|
||||||
|
|
||||||
|
echo "Updating version info..."
|
||||||
|
|
||||||
|
VERSION=$(git describe --tags --always --match "Release_*" HEAD)
|
||||||
|
REVISION=$(git rev-parse --short HEAD)
|
||||||
|
REVISION_DATE=$(git show -s --format=%aI HEAD)
|
||||||
|
|
||||||
|
sed -i -E "s/const VERSION = '(.*)';/const VERSION = '${VERSION}';/" main.php
|
||||||
|
sed -i -E "s/const REVISION = '(.*)';/const REVISION = '${REVISION}';/" main.php
|
||||||
|
sed -i -E "s/const REVISION_DATE = '(.*)';/const REVISION_DATE = '${REVISION_DATE}';/" main.php
|
Loading…
Reference in New Issue
Block a user