我可以在等待App Store Connect完成对新版本的处理时关闭终端吗



我正在使用fastlane构建ipa并将其上传到iTC,提交审查标志为true。

当完成上传时,iTC需要时间来处理ipa。通常需要一个小时。然后Fastlane将要求提交审查。

我的问题是,当fastlane连续输出"等待App Store Connect完成对新构建的处理"时,我可以关闭终端吗,或者我必须让它保持活动状态?

这是我的快车道行动

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

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

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

相关内容

  • 没有找到相关文章

最新更新