From 4c3ccb42cd2c88ae8600f046435c38f5231625bb Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 29 Apr 2020 03:21:58 +0530 Subject: release/deploy-github: automatically switch refs Signed-off-by: Harsh Shandilya --- release/deploy-github.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/deploy-github.sh b/release/deploy-github.sh index 2849a421..6fb3532d 100755 --- a/release/deploy-github.sh +++ b/release/deploy-github.sh @@ -4,5 +4,8 @@ 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" -- cgit v1.2.3