我一直在向我的团队展示Staging
键的进度。
当我执行code-push deployment ls APP_NAME_HERE -k
时,
它会给我一个Staging
和Production
表,其中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
关于react-native - 如何使用Code Push CLI更新 “Production”部署?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37616715/