fluffychat/scripts/release-ios-testflight.sh

15 lines
283 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
2021-11-27 09:50:04 +00:00
rm -rf Pods
rm -f Podfile.lock
2022-04-23 16:08:30 +00:00
arch -x86_64 pod install
arch -x86_64 pod update
2020-11-21 10:36:13 +00:00
cd ..
2020-12-08 14:46:47 +00:00
flutter build ios --release
2021-06-19 15:22:00 +00:00
cd ios
bundle update fastlane
bundle exec fastlane beta
cd ..