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