我一直在向我的团队展示我在使用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吗?
发布于 2016-06-03 15:03:32
可以使用--deploymentName来指定要更新的部署。
code-push release-react APP_NAME_HERE ios --deploymentName Production
您还可以将您的发布从阶段升级到生产(docs):
code-push promote APP_NAME_HERE Staging Production
https://stackoverflow.com/questions/37616715
复制相似问题