Files
GitJournal/scripts/build.sh
Vishesh Handa 300acbd787 CI: Build the APK as well as the AAB
The APK is useful for debugging, as one cannot easily install the AAB
from the command line.
2019-10-02 07:14:18 +02:00

10 lines
215 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
BUILD_NUM=`git rev-list --count HEAD`
echo "Build Number: $BUILD_NUM"
flutter build appbundle --build-number=$BUILD_NUM --verbose
flutter build apk --build-number=$BUILD_NUM --verbose