diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ffe6eb4 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,29 @@ +kind: pipeline +name: pipeline-example-maven + +steps: + - name: Build Project + image: maven:3-jdk-11 + volumes: + - name: cache + path: /root/.m2 + commands: + - mvn clean package + + - name: Send To DingTalk + image: guoxudongdocker/drone-dingtalk + settings: + token: + from_secret: 123 + type: markdown + message_color: true + message_pic: true + sha_link: true + when: + status: + - failure + - success + +trigger: + branch: + - master \ No newline at end of file