Skip to content

Instantly share code, notes, and snippets.

@litoarias
Last active March 30, 2018 22:55
Show Gist options
  • Save litoarias/d050370bbd5480498a0081a31c335dad to your computer and use it in GitHub Desktop.
Save litoarias/d050370bbd5480498a0081a31c335dad to your computer and use it in GitHub Desktop.
Fastlane
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