drone-ci-demo/.drone.yml
lab b694fe11c7
Some checks failed
continuous-integration/drone/push Build is failing
fix: remove auto_tag from .drone.yml
2021-12-05 01:00:22 +08:00

36 lines
532 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: greeting
image: alpine
commands:
- echo hello
- echo world
- echo done
- name: en
image: alpine
commands:
- echo hello world
- name: fr
image: alpine
commands:
- echo bonjour monde
- name: docker
image: plugins/docker
repo: esinio/helloworld
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
branch:
- master
event:
- push