Files
es-bot/.drone.yml
gav 7113f914c5
Some checks reported errors
continuous-integration/drone/push Build was killed
Update '.drone.yml'
2022-05-08 13:14:03 +07:00

34 lines
452 B
YAML

---
kind: pipeline
type: ssh
name: default-ssh-pipeline
server:
host:
from_secret: docker_host
user:
from_secret: docker_user
ssh_key:
from_secret: docker_privkey
port: 2200
steps:
- name: greeting
commands:
- echo hello world
- docker ps -a
---
kind: pipeline
type: docker
name: test-secrets-pipeline
steps:
- name: test-secrets
image: alpine
environment:
HOST:
from_secret: docker_host
commands:
- env