waitui/.drone.yml
Rick Barenthin 02dacd5e70
All checks were successful
continuous-integration/drone/push Build is passing
initial pipeline file
2022-01-21 00:03:14 +01:00

29 lines
367 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: alpine
commands:
- echo This would build the app and run test
trigger:
branch:
- develop
...