mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-25 22:01:16 +00:00
scripts: Automate tag message
This commit is contained in:
parent
e81a076090
commit
171d935b79
1 changed files with 5 additions and 1 deletions
|
@ -40,4 +40,8 @@ OLD_VERSION_NAME=$(grep "versionName" "app/build.gradle" | awk '{print $2}')
|
||||||
sed -i "s/$OLD_VERSION_NAME/\"$1\"/" "app/build.gradle"
|
sed -i "s/$OLD_VERSION_NAME/\"$1\"/" "app/build.gradle"
|
||||||
git add "app/build.gradle" $CHANGELOG
|
git add "app/build.gradle" $CHANGELOG
|
||||||
git commit -m "Bumped version to $NEW_VERSION_NAME"
|
git commit -m "Bumped version to $NEW_VERSION_NAME"
|
||||||
git tag -a ${NEW_VERSION_NAME}
|
git tag -a ${NEW_VERSION_NAME} -m "
|
||||||
|
$NEW_VERSION_NAME
|
||||||
|
|
||||||
|
$(cat $CHANGELOG)
|
||||||
|
"
|
||||||
|
|
Loading…
Reference in a new issue