mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 17:04:09 +02:00
10 lines
285 B
Bash
Executable file
10 lines
285 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
trap 'exit 1' SIGINT SIGTERM
|
|
|
|
[ -z "$(command -v hub)" ] && { echo "hub not installed; aborting!"; exit 1; }
|
|
TAG="${1}"
|
|
hub tag -afs "${TAG:?}"
|
|
gradle clean bundleRelease assembleRelease
|
|
hub release create "${TAG}" -a app/build/outputs/apk/release/app-release.apk
|