Created
November 6, 2020 12:29
-
-
Save ccfiel/ca95fecaf89d20f1d5169dff3678492f to your computer and use it in GitHub Desktop.
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 "Push a new release build to the App Store" | |
lane :release do | |
increment_build_number(xcodeproj: "Runner.xcodeproj") | |
get_certificates | |
get_provisioning_profile | |
build_app(workspace: "Runner.xcworkspace", scheme: "Runner") | |
upload_to_app_store | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment