我如何回应Yaml到Bitbucket管道中的文件

时间:2018-03-29 05:07:21

标签: yaml bitbucket-pipelines

我想在我的管道开头写一个.bowerrc文件。

echo '{ "allow_root": true }' > /root/.bowerrc

如何逃避所有引号和冒号以使其在yaml中有效?

image: java:8

pipelines:
  default:
    - step:
        script:
          - echo '{ "allow_root": true }' > /root/.bowerrc

1 个答案:

答案 0 :(得分:1)

只需删除空白

- npm install -g bower && echo '{"allow_root":true}' > /root/.bowerrc && npm install -g grunt-cli