mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-16 02:41:15 +08:00

Only build the AAB, since it's all we're uploading. Earlier the apk was still useful as I was downloading it for manual testing, but now all testing is done by downloading the release from the app store in a Closed Testing List.
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
BUILD_NUM=`git rev-list --count HEAD`
|
|
echo "Build Number: $BUILD_NUM"
|
|
|
|
flutter build appbundle --flavor prod --build-number=$BUILD_NUM --verbose
|