Update 'demo.yml'

This commit is contained in:
2022-04-23 09:52:25 +00:00
parent 85f65c7dd8
commit a1fc670cc2
+22 -6
View File
@@ -1,9 +1,25 @@
# A YAML template example.
kind: pipeline kind: pipeline
type: docker type: docker
# name: default name: en
steps: steps:
- name: demo - name: greeting
image: alpine image: alpine
commands: commands:
- apk add curl - echo hello world
trigger:
event:
- push
---
kind: pipeline
type: docker
name: fr
steps:
- name: greeting
image: alpine
commands:
- echo bonjour monde
trigger:
event:
- pull_request