Deploy to App Store Connect with YAML

YAML Parameters for Deploy to App Store Connect

NameTypeDescription
action RequiredStringThe ID of the action.
type RequiredStringThe type of the action. Must be set to NATIVE_BUILD_MAC_DEPLOY.
archive_location RequiredStringThe filesystem path of the signed archive file.
validate_before_uploadStringDefines if the app is submitted to Fastlane pre-check before sending for review.
submit_for_reviewBooleanDefines if the app is sent to review.
skip_metadataBooleanDefines if the app metadata is updated.
skip_app_version_updateBooleanDefines if the app version is increased.
skip_screenshotsBooleanDefines is the app screenshots are updated.

YAML example for Deploy to App Store Connect

yaml
actions: - action: "Deploy to App Store Connect" type: "NATIVE_BUILD_MAC_DEPLOY" archive_location: "$BUDDY_SIGNED_IPA_PATH" validate_before_upload: true submit_for_review: true skip_metadata: true skip_app_version_update: true skip_screenshots: true integration: "my_integration"

Last modified on Sep 24, 2024