diff options
-rwxr-xr-x | release/deploy-github.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/deploy-github.sh b/release/deploy-github.sh index 40fbb1d4..2849a421 100755 --- a/release/deploy-github.sh +++ b/release/deploy-github.sh @@ -5,4 +5,4 @@ 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 "${TAG}" -a app/build/outputs/apk/release/app-release.apk +hub release create "${1}" -a app/build/outputs/apk/release/app-release.apk |