Files
GitJournal/scripts/build.sh
Vishesh Handa 8be06b5211 CircleCI: Move building to a separate step
I rather not couple the building of the APK to Fastlane.
2019-02-12 19:00:44 +01:00

9 lines
145 B
Bash
Executable File

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