Skip to content

Instantly share code, notes, and snippets.

@Th3nion
Created September 13, 2017 12:11
Show Gist options
  • Save Th3nion/7a434af139ab10133e0ac45321ac43e5 to your computer and use it in GitHub Desktop.
Save Th3nion/7a434af139ab10133e0ac45321ac43e5 to your computer and use it in GitHub Desktop.
fastlane_version "1.109.0"
default_platform :ios
desc "Build with target :"
lane :buildDeliver do |options|
# cocoapods
increment_build_number(
xcodeproj: "<%WORKSPACE%>.xcodeproj"
)
gym(
scheme: options[:target],
export_method: "app-store"
)
# upload to itunesConnect
ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
pilot(
skip_waiting_for_build_processing: true,
username: options[:username]
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment