如何推动CircleCI中的任何分支?

时间:2016-08-29 19:24:29

标签: circleci

我希望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错误。

感谢您的任何想法/帮助, 最大

1 个答案:

答案 0 :(得分:1)

branch: /.*/似乎有用

虽然我不确定为什么