Update 'demo.yml' #4

Merged
ShankarMounesh merged 1 commits from shankarmounesh-patch-1 into main 2022-04-23 09:52:36 +00:00
Showing only changes of commit a1fc670cc2 - Show all commits
+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