fluffychat/scripts/release-playstore-beta.sh

11 lines
303 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2020-11-21 10:36:13 +00:00
flutter pub get
flutter build appbundle --target-platform android-arm,android-arm64,android-x64
mkdir -p build/android
2020-11-21 12:43:36 +00:00
cp build/app/outputs/bundle/release/app-release.aab build/android/
2020-11-22 10:04:47 +00:00
cd android
bundle install
bundle update fastlane
2020-11-22 10:04:47 +00:00
bundle exec fastlane deploy_internal_test
2020-12-08 14:46:47 +00:00
cd ..