Как загрузить и доставить приложение, не дожидаясь обработки с помощью fastlane - PullRequest
0 голосов
/ 28 мая 2020

Я хочу загрузить свое приложение в testflight и отправить приложение на проверку, но не дожидаясь обработки приложения в appstoreconnect. Есть ли способ сделать это на быстрой полосе?

Вот моя текущая полоса, где вы можете понять, что я хочу сделать

disable_automatic_code_signing(code_sign_identity: "Apple Distribution")
match(type: "appstore", app_identifier: "app.com.some.app")
run_localizable_tests
gym(scheme: "MyScheme", export_method: "app-store", configuration: "Release (Production)", clean: true)
upload_to_testflight
deliver(
  submit_for_review: true,
  automatic_release: true,
  force: true, 
  skip_metadata: false,
  skip_screenshots: true,
  skip_binary_upload: true,
  metadata_path: "fastlane/metadata-app2",
  screenshots_path: "fastlane/screenshots-app2",
  app_identifier: "app.identifier"
)
...