如何使用 Code Push CLI 更新 "Production" 部署?
How to update "Production" deployment using Code Push CLI?
我一直在用 Staging
键向我的团队展示我的进步。
当我做 code-push deployment ls APP_NAME_HERE -k
时,
它会给我一个 Staging
和 Production
table,Production
有消息 No updates released
.
我一直在用code-push release-react APP_NAME_HERE ios
更新。
谁能指导我需要将哪些选项发送到 Production
而不是 Staging
?
您可以使用 --deploymentName 指定要更新的部署。
code-push release-react APP_NAME_HERE ios --deploymentName Production
您还可以将您的版本从暂存阶段提升到生产阶段 (docs):
code-push promote APP_NAME_HERE Staging Production
我一直在用 Staging
键向我的团队展示我的进步。
当我做 code-push deployment ls APP_NAME_HERE -k
时,
它会给我一个 Staging
和 Production
table,Production
有消息 No updates released
.
我一直在用code-push release-react APP_NAME_HERE ios
更新。
谁能指导我需要将哪些选项发送到 Production
而不是 Staging
?
您可以使用 --deploymentName 指定要更新的部署。
code-push release-react APP_NAME_HERE ios --deploymentName Production
您还可以将您的版本从暂存阶段提升到生产阶段 (docs):
code-push promote APP_NAME_HERE Staging Production