summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-10-09 17:07:37 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-10-10 11:18:25 +0530
commit419a49088537aa7311ae8e1d02775d8aa0715809 (patch)
tree6d598abe6c105dec90b692fddc89a0dd5c2d8052
parent94a373e2825883cc4d5d2b6fc7095a1cb2c1199f (diff)
release/deploy-github: remove
Release artifacts are now delivered by CI Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rwxr-xr-xrelease/deploy-github.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/release/deploy-github.sh b/release/deploy-github.sh
deleted file mode 100755
index 9480604b..00000000
--- a/release/deploy-github.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-set -ex
-
-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}" || exit 1
-gradle clean bundleRelease assembleRelease
-hub release create "${1}" -a app/build/outputs/apk/release/app-release.apk
-git checkout "$prev_ref"