From f9c310e93a6c4ac820779b052c3be40199d9bc9c Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 29 Apr 2020 03:25:58 +0530 Subject: release/deploy-github: add rudimentary checks for tag existence Signed-off-by: Harsh Shandilya --- release/deploy-github.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/release/deploy-github.sh b/release/deploy-github.sh index 6fb3532d..62485e51 100755 --- a/release/deploy-github.sh +++ b/release/deploy-github.sh @@ -4,6 +4,14 @@ trap 'exit 1' SIGINT SIGTERM [ -z "$(command -v hub)" ] && { echo "hub not installed; aborting!"; exit 1; } [ -z "${1}" ] && { echo "No tag specified!"; exit 1; } +found_tag= +git tag -l | while read -r tag; do + if [ "$tag" == "${1}" ]; then + found_tag=true + break + fi +done +[ -z "${found_tag}" ] && { echo "Cannot find tag ${1} in the repository"; exit 1; } prev_ref="$(git rev-parse --abbrev-ref HEAD)" git checkout "${1}" gradle clean bundleRelease assembleRelease -- cgit v1.2.3