All checks were successful
continuous-integration/drone/push Build is passing
22 lines
327 B
YAML
22 lines
327 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: en
|
|
image: alpine
|
|
commands:
|
|
- echo hello
|
|
- echo world1
|
|
|
|
- name: fr
|
|
image: alpine
|
|
commands:
|
|
- echo bounjour
|
|
- echo monde
|
|
when:
|
|
ref:
|
|
include:
|
|
- refs/heads/feature-*
|
|
exclude:
|
|
- refs/heads/**
|