waitui/.drone.yml
2022-01-20 23:49:46 +01:00

29 lines
361 B
YAML

---
kind: pipeline
type: docker
name: main
steps:
- name: Tag commit
image: alpine
commands:
- echo This would create a tag
trigger:
branch:
- main
---
kind: pipeline
type: docker
name: develop
steps:
- name: Tag commit
image: kitware/cmake
commands:
- cmake -DCMAKE_BUILD_TYPE=Debug .
trigger:
branch:
- main
...