mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
11 lines
303 B
Bash
Executable File
11 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
flutter pub get
|
|
flutter build appbundle --target-platform android-arm,android-arm64,android-x64
|
|
mkdir -p build/android
|
|
cp build/app/outputs/bundle/release/app-release.aab build/android/
|
|
cd android
|
|
bundle install
|
|
bundle update fastlane
|
|
bundle exec fastlane deploy_internal_test
|
|
cd ..
|