You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/scripts/release-ios-testflight.sh

13 lines
184 B
Bash

4 years ago
#!/bin/sh -ve
4 years ago
flutter clean
flutter pub get
cd ios
pod install
pod update
cd ..
4 years ago
flutter build ios --release
cd ios
bundle install
bundle update fastlane
bundle exec fastlane beta
cd ..