Last active
March 29, 2021 18:40
-
-
Save douglasiacovelli/6589a51830ca735066adb24362bdb328 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
platform :ios do | |
# ... here comes the lanes we've created earlier | |
desc "deploy" | |
lane :deploy do | |
setup_ci | |
sync_code_signing( | |
type: "appstore", | |
app_identifier: 'com.company.example', | |
readonly: true | |
) | |
build_app(scheme: "your-app-scheme") | |
app_store_connect_api_key( | |
is_key_content_base64: true, | |
in_house: false, # if it is enterprise or not | |
) | |
upload_to_app_store( | |
force: true, | |
run_precheck_before_submit: false, | |
submit_for_review: false | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment