Skip to content

Instantly share code, notes, and snippets.

@douglasiacovelli
Last active March 29, 2021 18:40
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 douglasiacovelli/6589a51830ca735066adb24362bdb328 to your computer and use it in GitHub Desktop.
Save douglasiacovelli/6589a51830ca735066adb24362bdb328 to your computer and use it in GitHub Desktop.
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