Flutter and fastlane, how to setup an iOS continuous delivery solution
['Benoit Pasquier']
Benoit Pasquier - Swift, Data and more
# Build for ios flutter build ios # Move to the right folder cd ios # Initialize fastlane fastlane init #!/bin/bash # Download and move secrets ./setup-secrets.sh # Generate latest ios build, with release properties, no signing flutter build ios --release --no-codesign # Move into ios cd ios # Import environment variables to current session source secrets-ios.sh # Sync certificates fastlane sync_match # Build and upload to App Store / TestFlight fastlane delivery Today, we went from setting up a shared and secured secret environments, building the flutter app, to signing and uploading the iOS app to the App Store.