15 lines
184 B
YAML
15 lines
184 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: hello-world
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: say-hello
|
|
image: busybox
|
|
commands:
|
|
- echo hello-world |