summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-17 12:41:29 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-17 12:41:29 -0800
commit46e1f5e36acd946808074ed2eecd8c118702e521 (patch)
treeed4d25950060ce9090abf65593ec338a6b726e09
parent9f1fde4794633b1b3dded88a92e1c50810b27786 (diff)
downloadsubsurface-46e1f5e36acd946808074ed2eecd8c118702e521.tar.gz
Travis: update the release message
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--scripts/travis_end.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/travis_end.sh b/scripts/travis_end.sh
index 37a86f1e0..3a9d4945f 100644
--- a/scripts/travis_end.sh
+++ b/scripts/travis_end.sh
@@ -24,11 +24,12 @@ fi
# update the Body of the Release to be more interesting
VERSION=$(cd ${TRAVIS_BUILD_DIR}; ./scripts/get-version linux)
-T_BUILD_REF="Travis CI build log: https://travis-ci.org/Subsurface-divelog/subsurface/builds/$TRAVIS_BUILD_ID/\n"
-WIN_BINS="subsurface.exe and subsurface.exe.debug are just the Subsurface executable for this build, the full Windows installer is subsurface-$VERSION.exe.\n"
-MAC_ZIP="Subsurface-$VERSION.app.zip is a zip archive containing an unsigned app folder; you will have to override Mac security settings in order to be able to run this app.\n"
-MISSING_BINS="The Android APK is not yet automatically created on Travis - try looking for the latest at http://subsurface-divelog.org/downloads/test."
-BODY=$T_BUILD_REF$WIN_BINS$MAC_ZIP$MISSING_BINS
+T_BUILD_REF="Travis CI build log: https://travis-ci.org/Subsurface-divelog/subsurface/builds/$TRAVIS_BUILD_ID/\n\n"
+WIN_BINS="subsurface.exe and subsurface.exe.debug are just the Subsurface executable for this build, the full Windows installer is subsurface-$VERSION.exe.\n\n"
+MAC_ZIP="Subsurface-$VERSION.app.zip is a zip archive containing an unsigned app folder; you will have to override Mac security settings in order to be able to run this app.\n\n"
+ANDROID_APK="The Android APK is not signed with the release key, most Android phones will force you to uninstall Subsurface-mobile before you can install this APK if you already have an official binary installed on your Android device.\n\n"
+MISSING_BINARIES="While the continuous builds are running not all binaries may be posted here - please reload the page in a few minutes if the binary you are looking for is missing\n."
+BODY=$T_BUILD_REF$WIN_BINS$MAC_ZIP$ANDROID_APK$MISSING_BINARIES
release_id=$(curl https://api.github.com/repos/Subsurface-divelog/subsurface/releases/tags/${RELEASE_NAME} | grep "\"id\":" | head -n 1 | tr -s " " | cut -f 3 -d" " | cut -f 1 -d ",")
release_infos=$(curl -H "Authorization: token ${GITHUB_TOKEN}" --request PATCH \