mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-10 21:13:57 +08:00
9 lines
145 B
Bash
Executable File
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
|