← back to CelebritySignatures

apps/mobile/fastlane/Fastfile

27 lines

default_platform(:ios)

platform :ios do
  desc "Upload metadata + screenshots to the DRAFT listing (holds Submit for Review)"
  lane :push_listing do
    app_store_connect_api_key(
      key_id: "72Y2TZT54R",
      issuer_id: "cfbd63ed-301b-465c-aad7-49e94420ad70",
      key_filepath: "/Users/macstudio3/Projects/CelebritySignatures/apps/mobile/credentials/AuthKey_72Y2TZT54R.p8",
      duration: 1200,
      in_house: false,
    )
    deliver(
      app_identifier: "com.abrams.celebsignatures",
      skip_binary_upload: true,
      skip_metadata: true,        # metadata already published on the draft (8/6); avoids blanking required App Review contact fields
      skip_screenshots: false,
      submit_for_review: false,
      force: true,
      overwrite_screenshots: true,
      run_precheck_before_submit: false,
      automatic_release: false,
      languages: ["en-US"],
    )
  end
end