drone-ci-demo/.drone.yml
lab 607293ba9f
All checks were successful
continuous-integration/drone/push Build is passing
add step: en, fr
2021-12-04 15:12:39 +08:00

29 lines
380 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: greeting
image: alpine
commands:
- echo hello
- echo world
- echo done
when:
branch:
- master
- name: en
image: alpine
commands:
- echo hello world
- name: fr
image: alpine
commands:
- echo bonjour monde
trigger:
event:
- push