Skip to content

Instantly share code, notes, and snippets.

@rodydavis
Created June 6, 2022 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodydavis/51d1e97e0798a29706a68bf0936fb91d to your computer and use it in GitHub Desktop.
Save rodydavis/51d1e97e0798a29706a68bf0936fb91d to your computer and use it in GitHub Desktop.
flutter script to build app on Xcode Cloud ci_scripts/ci_post_install.sh
#!/bin/sh
# Install CocoaPods using Homebrew.
brew install cocoapods
# Install Flutter
brew install --cask flutter
# Run Flutter doctor
flutter doctor
# Get packages
flutter packages get
# Update generated files
flutter pub run build_runner build
# Build ios app
flutter build ios --no-codesign
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment