fluffychat/scripts/release-ios-testflight.sh
2021-11-27 10:50:04 +01:00

16 lines
No EOL
269 B
Bash
Executable file

#!/bin/sh -ve
git apply ./scripts/enable-android-google-services.patch
flutter clean
flutter pub get
cd ios
rm -rf Pods
rm Podfile.lock
pod install
pod update
cd ..
flutter build ios --release
cd ios
bundle install
bundle update fastlane
bundle exec fastlane beta
cd ..