mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
13 lines
187 B
Bash
13 lines
187 B
Bash
|
#!/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 ..
|