fluffychat/scripts/release-ios-testflight.sh

14 lines
241 B
Bash
Raw Normal View History

2020-12-08 14:46:47 +00:00
#!/bin/sh -ve
2021-10-14 15:14:09 +00:00
git apply ./scripts/enable-android-google-services.patch
2020-11-21 10:36:13 +00:00
flutter clean
flutter pub get
cd ios
pod install
pod update
cd ..
2020-12-08 14:46:47 +00:00
flutter build ios --release
2021-06-19 15:22:00 +00:00
cd ios
bundle install
bundle update fastlane
bundle exec fastlane beta
cd ..