deltachat/scripts/upload-release.sh
bjoern da517bdc9b
prepare 1.36.2 (#2535)
* update deltachat-core-rust to 'ref: More logging for ongoing and get_backup (#4289)' of branch 'stable-1.112'

* update changelog for 1.36.2

* bump version to 1.36.2

* add some feedback at end of upload-release script, similar to upload-beta
2023-04-05 15:41:15 +02:00

43 lines
1.7 KiB
Bash
Executable file

VERSION=$1
if [ -z "$VERSION" ]; then
echo "this script uploads release-ready apk and symbols to download.delta.chat/android"
echo "- for showing up on get.delta.chat"
echo " you still need to change deltachat-pages/_includes/download-boxes.html"
echo "- the script does not upload things to gplay or other stores."
echo ""
echo "usage: ./scripts/upload-release.sh <VERSION>"
exit
fi
if [[ ${VERSION:0:1} == "v" ]]; then
echo "VERSION must not begin with 'v' here."
exit
fi
cd gplay/release
APK="deltachat-gplay-release-$VERSION.apk"
ls -l $APK
read -p "upload this apk and belonging symbols to download.delta.chat/android? ENTER to continue, CTRL-C to abort."
# you need the private SSH key of the jekyll user; you can find it in this file:
# https://github.com/hpk42/otf-deltachat/blob/master/secrets/delta.chat
# It is protected with [git-crypt](https://www.agwa.name/projects/git-crypt/) -
# after installing it, you can decrypt it with `git crypt unlock`.
# If your key isn't added to the secrets, and you know some of the team in person,
# you can ask on irc #deltachat for access.
# Add the key to your `~/.ssh/config` for the host, or to your ssh-agent, so rsync is able to use it)
rsync --progress $APK jekyll@download.delta.chat:/var/www/html/download/android/
cd ../..
SYMBOLS_ZIP="$APK-symbols.zip"
rm $SYMBOLS_ZIP
zip -r $SYMBOLS_ZIP obj
ls -l $SYMBOLS_ZIP
rsync --progress $SYMBOLS_ZIP jekyll@download.delta.chat:/var/www/html/download/android/symbols/
echo "upload done."
echo ""
echo "and now: here is Delta Chat $VERSION:"
echo "- 🍋 https://download.delta.chat/android/deltachat-gplay-release-$VERSION.apk (android, overwrites existing gplay installs, keeps data)"
echo ""