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