Skip to content

Instantly share code, notes, and snippets.

@dsxsxsxs
Last active January 31, 2019 08:30
Show Gist options
  • Save dsxsxsxs/f25441b893e7edc766e7f400d5dd26d8 to your computer and use it in GitHub Desktop.
Save dsxsxsxs/f25441b893e7edc766e7f400d5dd26d8 to your computer and use it in GitHub Desktop.
Minimum fastfile to automate testflight deployment
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
build_app(scheme: "MUFG", include_bitcode: false, export_xcargs: "-allowProvisioningUpdates")
upload_to_testflight(skip_waiting_for_build_processing: true)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment