【问题标题】:Can I close terminal while waiting waiting for App Store Connect to finish processing the new build?我可以在等待 App Store Connect 完成处理新版本的同时关闭终端吗?
【发布时间】: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


    【解决方案1】:

    是的,您可以关闭终端,并且可以使用此操作在进程完成时收到通知:https://github.com/fastlane/watchbuild

    它不是deliverpilot 的替代品,它只是一个在进程完成时触发通知的实用程序

    【讨论】:

    • 即使我想自动提交应用程序?
    猜你喜欢
    • 1970-01-01
    • 2021-08-25
    • 1970-01-01
    • 2020-02-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-07-27
    相关资源
    最近更新 更多