在仓库根目录中增加 .coding-ci.yml 配置文件。
.coding-ci.yml
其描述了当仓库发生一些事件时,云原生构建 应该如何去进行处理。
云原生构建
将配置文件 push 到远程 master
push
master
一个简单的配置文件如下:
master: push: - stages: - name: echo script: echo "hello world"
然后将配置文件 push 到远程 master 分支。即会触发流水线构建。
想了解配置文件更多用法请移步 配置文件。