a5437c480a
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
8 lines
303 B
Bash
Executable file
8 lines
303 B
Bash
Executable file
#!/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; }
|
|
gradle clean bundleRelease assembleRelease
|
|
hub release create "${1}" -a app/build/outputs/apk/release/app-release.apk
|