Last active
March 30, 2018 22:55
-
-
Save litoarias/d050370bbd5480498a0081a31c335dad to your computer and use it in GitHub Desktop.
Fastlane
This file contains 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 "Description of what the lane does" | |
lane :generate_ipa_develop do | |
build_ios_app( | |
configuration: "Debug", | |
scheme: "Test", | |
clean: true, | |
export_method: 'development', | |
output_directory: "~/Desktop", # Destination directory. Defaults to current directory. | |
output_name: "fastlane_jenkins.ipa", | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment