fluffychat/scripts/release-ios-testflight.sh
2025-07-12 08:39:51 +02:00

16 lines
No EOL
346 B
Bash
Executable file

#!/bin/sh -ve
./scripts/add-firebase-messaging.sh
yq eval '.dependencies.fcm_shared_isolate = "0.1.0"' -i pubspec.yaml # Workaround: 0.2.0 does not work on iOS
flutter clean
flutter pub get
cd ios
rm -rf Pods
rm -f Podfile.lock
pod install
pod update
cd ..
flutter build ios --release
cd ios
bundle update fastlane
bundle exec fastlane beta
cd ..