parent
c2605722a7
commit
e187344d43
1 changed files with 14 additions and 1 deletions
@ -1,9 +1,22 @@ |
|||||||
kind: pipeline |
kind: pipeline |
||||||
name: hello-world |
|
||||||
type: docker |
type: docker |
||||||
|
name: hello-world |
||||||
|
|
||||||
steps: |
steps: |
||||||
- name: say-hello |
- name: say-hello |
||||||
image: busybox |
image: busybox |
||||||
commands: |
commands: |
||||||
- echo hello-world |
- echo hello-world |
||||||
|
|
||||||
|
- name: build-image |
||||||
|
image: busybox |
||||||
|
commands: |
||||||
|
- echo build-image |
||||||
|
|
||||||
|
- name: deploy |
||||||
|
image: busybox |
||||||
|
commands: |
||||||
|
- echo deploy to production |
||||||
|
when: |
||||||
|
event: |
||||||
|
- promote |
||||||
Loading…
Reference in new issue