Skip to content
This repository was archived by the owner on Oct 5, 2018. It is now read-only.

Commit fbb1528

Browse files
committed
Added prepare release script
1 parent c39284a commit fbb1528

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

prepare-release.bash

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
NEW_VERSION_NAME=$1
6+
OLD_VERSION_NAME=$(grep " version =" "build.gradle" | awk '{print $3}' | tr -d "\"")
7+
if [[ -z ${NEW_VERSION_NAME} ]]
8+
then
9+
echo "New version name is empty. Please set a new version. Current version: $OLD_VERSION_NAME"
10+
exit
11+
fi
12+
13+
echo "
14+
15+
Updating Version
16+
-----------------------------
17+
"
18+
sed -i "s/version = \"$OLD_VERSION_NAME\"/version = \"$NEW_VERSION_NAME\"/" "build.gradle"
19+
20+
git add "build.gradle"
21+
git commit -m "Version $NEW_VERSION_NAME"
22+
git tag ${NEW_VERSION_NAME}
23+
24+
echo "
25+
Update ready.
26+
"

0 commit comments

Comments
 (0)