fluffychat/scripts/release-ios-testflight.sh
2022-04-27 08:54:54 +02:00

14 lines
No EOL
223 B
Bash
Executable file

#!/bin/sh -ve
flutter clean
flutter pub get
cd ios
rm -rf Pods
rm Podfile.lock
arch -x86_64 pod install
arch -x86_64 pod update
cd ..
flutter build ios --release
cd ios
bundle update fastlane
bundle exec fastlane beta
cd ..