【发布时间】:2017-01-05 22:10:06
【问题描述】:
我希望 CircleCI 为推送的 每个 分支部署。
文档 (https://circleci.com/docs/configuration/#deployment) 状态:
The branch field can also specify regular expressions, surrounded with / (e.g. /feature_.*/):
deployment:
feature:
branch: /feature_.*/
commands:
- ./deploy_feature.sh
我尝试过branch: /*/,但这似乎不起作用 - 我没有在任何分支上构建任何版本!
我也尝试删除 branch: 标记,但这会引发 must contain a branch or a tag 错误。
感谢您的任何想法/帮助, 最大
【问题讨论】:
标签: circleci