Full App Store release pipeline — captures screenshots, frames them, bumps build, builds IPA, uploads to TestFlight, and submits for App Store review via the fastlane release lane.
This skill runs the fastlane release lane for a full App Store submission.
bundle install in the iOS project directoryFastfile with a release lane definedImportant: This submits the app for App Store review. Confirm with the user before running.
Detect the iOS project directory:
find "$PROJECT_DIR" -name "Fastfile" -path "*/fastlane/*" | head -1
Then run:
cd "$IOS_DIR" && bundle exec fastlane release 2>&1
If using Homebrew Ruby:
cd "$IOS_DIR" && export PATH="/opt/homebrew/opt/ruby/bin:/opt/homebrew/lib/ruby/gems/$(ruby -e 'puts RUBY_VERSION.split(".")[0..1].join(".")').0/bin:$PATH" && bundle exec fastlane release 2>&1
Timeout: This command can take 10+ minutes due to screenshot capture. Use a 600000ms timeout.
fastlane.tools finished successfully at the end