1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-23 04:41:16 +00:00
syncthing-android/publish-release.sh

61 lines
1.2 KiB
Bash
Raw Normal View History

2017-09-30 14:52:00 +00:00
#!/usr/bin/env bash
set -e
version=$(git describe --always)
regex='^[0-9]+\.[0-9]+\.[0-9]+$'
if [[ ! ${version} =~ $regex ]]
then
echo "Current commit is not a release"
exit;
fi
echo "
Pushing to Github
-----------------------------
"
git push
git push --tags
version=`git describe --tags --abbrev=0`
echo "
Enter Changelog for $version
-----------------------------
"
2017-10-08 06:27:09 +00:00
changelog_file="build/changelog.tmp"
touch ${changelog_file}
nano ${changelog_file}
2017-09-30 14:52:00 +00:00
2017-10-08 06:27:09 +00:00
changelog=`cat ${changelog_file}`
mv ${changelog_file} "src/main/play/en-GB/whatsnew"
2017-09-30 14:52:00 +00:00
echo "
Push to Google Play
-----------------------------
"
2017-10-08 06:27:09 +00:00
read -s -p "Enter signing password: " password
2017-09-30 14:52:00 +00:00
SIGNING_PASSWORD=$password ./gradlew assembleRelease
# Upload apk and listing to Google Play
2017-10-08 06:27:09 +00:00
SIGNING_PASSWORD=$password ./gradlew publishRelease
2017-09-30 14:52:00 +00:00
echo "
Release published!
"
#echo "
#
#Create Github Release
#-----------------------------
#"
#ACCESS_TOKEN=""
#api_json=$(printf '{"tag_name": "v%s","target_commitish": "master","name": "v%s","body": "%s","draft": false,"prerelease": false}' $version $version $changelog)
#curl --data "$api_json" https://api.github.com/repos/syncthing/syncthing-android/releases?access_token=$ACCESS_TOKEN