fluffychat/scripts/release-ios-testflight.sh
2021-10-14 17:14:09 +02:00

14 lines
No EOL
241 B
Bash
Executable file

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