【发布时间】:2020-08-02 02:18:35
【问题描述】:
我正在使用 fastlane 构建 ipa 并将其上传到 iTC,并且提交审核标志为 true。
上传完成后,iTC需要时间处理ipa,一般需要1小时,然后Fastlane会要求提交审核。
我的问题是,当fastlane不断输出'Waiting for App Store Connect to finish processing the new build'时,我可以关闭终端,还是必须让它活着?
这是我的快车道操作
lane :build_app_store do
build_app(
export_method: "app-store",
export_options: PROVISION_PROFILE_APP_STORE,
output_directory: OUTPUT_DIRECTORY,
silent: true,
clean: true,)
appstore(force: true, # Skip HTMl report verification
skip_screenshots:true,
skip_metadata: true,
app_identifier: "com.app.cn",
submit_for_review: false,
phased_release: true)
end
【问题讨论】:
标签: fastlane