2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-01-04 05:52:43 +01:00
fluffychat/scripts/release-ios.sh
2021-06-20 08:46:12 +02:00

13 lines
187 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 release
cd ..