fluffychat/scripts/release-ios-testflight.sh
Christian Pauly 23f9be2fd5 feat: Use Firebase Cloud Messaging over UP
This switches to the FOSS implementation
of the google libraries so we have
no more Blobs there.
2022-07-09 10:49:39 +02:00

14 lines
223 B
Bash
Executable File

#!/bin/sh -ve
flutter clean
flutter pub get
cd ios
rm -rf Pods
rm Podfile.lock
arch -x86_64 pod install
arch -x86_64 pod update
cd ..
flutter build ios --release
cd ios
bundle update fastlane
bundle exec fastlane beta
cd ..