mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-29 23:24:53 +08:00
9 lines
161 B
Bash
Executable File
9 lines
161 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
|