forked from thoth-tech/doubtfire-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-release-branch.sh
executable file
·36 lines (26 loc) · 1007 Bytes
/
create-release-branch.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
APP_PATH=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+1] != "") { if (patharr[idx] != "/") {printf("%s/", patharr[idx]); idx++ }} }'`
APP_PATH=`cd "$APP_PATH"; pwd`
cd "${APP_PATH}"
echo "Doubtfire is currently at version `git describe --abbrev=0 --tags`"
echo
echo "What's the name of the release branch?"
echo
read -p "Name: (Format as: 5.0.x) " RELEASE_BRANCH_NAME
echo "What's the name of the remote to push to (doubtfire-lms)"
read -p "Remote: (eg origin/upstream): " REMOTE
function prepare_branch {
PROJECT=$1
PROJECT_PATH=$2
cd "${PROJECT_PATH}"
git checkout -b $RELEASE_BRANCH_NAME
if [ $? -ne 0 ]; then
echo "Oh no... fix up this mess please";
exit 1
fi
git push -u $REMOTE $RELEASE_BRANCH_NAME
}
prepare_branch 'doubtfire-web' "${APP_PATH}/doubtfire-web"
prepare_branch 'doubtfire-api' "${APP_PATH}/doubtfire-api"
prepare_branch 'doubtfire-overseer' "${APP_PATH}/doubtfire-overseer"
prepare_branch 'doubtfire-deploy' "${APP_PATH}"