chore: Update iOS fastlane

This commit is contained in:
Christian Pauly 2021-06-20 08:46:12 +02:00
commit a2823d39d5
8 changed files with 41 additions and 12 deletions

13
scripts/release-ios.sh Executable file
View file

@ -0,0 +1,13 @@
#!/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 release
cd ..