Skip to content

Instantly share code, notes, and snippets.

@thecael
Created October 26, 2020 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecael/888822100bab7fc36299896fac16fb80 to your computer and use it in GitHub Desktop.
Save thecael/888822100bab7fc36299896fac16fb80 to your computer and use it in GitHub Desktop.
Fastfile
default_platform(:ios)
update_fastlane
xcversion(version: "~> 12")
platform :ios do
desc "Fetch all required certificates"
lane :match do
match(readonly: true)
end
desc "Run all tests"
lane :tests do
scan()
end
desc "Build a new release"
lane :build do
build()
end
desc "Push a release to AppStore Connect"
lane :release do
upload_to_app_store(skip_metadata: true,
skip_screenshots: true,
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