12 lines
172 B
YAML
12 lines
172 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
steps:
|
|
- name: {{ .input.name }}
|
|
image: {{ .input.image }}
|
|
commands:
|
|
{{ range .input.commands }}
|
|
- {{ . }}
|
|
{{ end }}
|
|
|