Last active
January 31, 2019 08:30
-
-
Save dsxsxsxs/f25441b893e7edc766e7f400d5dd26d8 to your computer and use it in GitHub Desktop.
Minimum fastfile to automate testflight deployment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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