drone_hello/.drone.yml

10 lines
139 B
YAML
Raw Normal View History

2020-07-17 15:08:28 +00:00
kind: pipeline
2020-07-17 15:38:23 +00:00
name: hello-world
2020-07-17 15:08:28 +00:00
type: docker
steps:
2020-07-17 15:38:23 +00:00
- name: say-hello
2020-07-17 16:03:11 +00:00
image: alpine:3.8
2020-07-17 15:08:28 +00:00
commands:
2020-07-17 16:03:11 +00:00
- echo Chipololo
2020-07-17 15:38:23 +00:00