fluffychat/scripts/release-ios-testflight.sh
2021-06-19 17:27:03 +02:00

13 lines
No EOL
184 B
Bash
Executable file

#!/bin/sh -ve
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 ..