12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- kind: pipeline
- name: default
- clone:
- depth: 1
- steps:
- - name: 打包
- image: reg.weipaitang.com/drone-plugin/yarn
- volumes:
- - name: cache
- path: /drone/src/dist
- commands:
- - yarn
- - yarn build
- - name: 部署
- image: reg.weipaitang.com/drone-plugin/ansible
- pull: always
- volumes:
- - name: cache
- path: /drone/src/dist
- - name: 成功通知
- image: reg.weipaitang.com/drone-plugin/work-wechat-notify
- settings:
- token:
- from_secret: token
- title: 发布成功 ✅
- when:
- status: success
- - name: 失败通知
- image: reg.weipaitang.com/drone-plugin/work-wechat-notify
- settings:
- token:
- from_secret: token
- title: 发布失败 ❌
- when:
- status: failure
- volumes:
- - name: cache
- temp: {}
- trigger:
- branch:
- include:
- - t*
|