drone-ci-demo/.drone.yml
lab 2a73023dca
Some checks failed
continuous-integration/drone/push Build is failing
feat: add plugins/docker
2021-12-05 00:41:44 +08:00

38 lines
584 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
auto_tag: true
auto_tag_suffix: linux-amd64
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
branch:
- master
event:
- push