summaryrefslogtreecommitdiff
path: root/release/deploy-github.sh
blob: 6fb3532d7ad50042b4df8c332511b07d506704f6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

trap 'exit 1' SIGINT SIGTERM

[ -z "$(command -v hub)" ] && { echo "hub not installed; aborting!"; exit 1; }
[ -z "${1}" ] && { echo "No tag specified!"; exit 1; }
prev_ref="$(git rev-parse --abbrev-ref HEAD)"
git checkout "${1}"
gradle clean bundleRelease assembleRelease
hub release create "${1}" -a app/build/outputs/apk/release/app-release.apk
git checkout "$prev_ref"