fastlane deliver:推广审核
Fastlane deliver: promote for review
我正在使用令人惊叹的 fastlane 工具集来构建我的 iOS 应用并将其上传到 Apple Store Connect。
我无法理解如何推广 Apple Store Connect 中已有的应用以供审核。
我应该将哪个语句添加到我的 Fastfile 或 Deliverfile 中?
谢谢
在fastfile中设置submit_for_review: true
:
deliver(
submit_for_review: true,
...
)
https://docs.fastlane.tools/actions/deliver/#use-in-a-fastfile
到 select 以前上传的版本并通过命令行提交它以供审核 运行:
fastlane deliver submit_build --build_number 830
我正在使用令人惊叹的 fastlane 工具集来构建我的 iOS 应用并将其上传到 Apple Store Connect。
我无法理解如何推广 Apple Store Connect 中已有的应用以供审核。
我应该将哪个语句添加到我的 Fastfile 或 Deliverfile 中?
谢谢
在fastfile中设置submit_for_review: true
:
deliver(
submit_for_review: true,
...
)
https://docs.fastlane.tools/actions/deliver/#use-in-a-fastfile
到 select 以前上传的版本并通过命令行提交它以供审核 运行:
fastlane deliver submit_build --build_number 830