fluffychat/scripts/release-playstore-beta.sh

16 lines
435 B
Bash
Raw Normal View History

2020-11-21 11:36:13 +01:00
#!/usr/bin/env bash
flutter channel stable
flutter upgrade
flutter pub get
2020-11-22 09:06:07 +01:00
cd android
bundle install
bundle update fastlane
2020-11-22 09:39:46 +01:00
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
2020-11-22 09:06:07 +01:00
bundle exec fastlane set_build_code_beta
cd ..
2020-11-21 11:36:13 +01:00
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 09:06:07 +01:00
cd android
bundle exec fastlane deploy_beta_test
cd ..