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

36 lines
475 B
YAML

---
kind: pipeline
type: ssh
name: default-ssh-pipeline
clone:
disable: true
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