mirror of
https://github.com/cupcakearmy/drone-deploy.git
synced 2024-12-22 00:06:32 +00:00
28 lines
457 B
YAML
28 lines
457 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: deploy
|
|
image: cupcakearmy/drone-deploy
|
|
pull: always
|
|
settings:
|
|
host: nicco.io
|
|
user: root
|
|
key:
|
|
from_secret: ssh_key
|
|
port: 1312
|
|
test: ok
|
|
envs:
|
|
- user
|
|
- host
|
|
- key
|
|
- test
|
|
target: /srv/web/test
|
|
commands:
|
|
- echo $KEY
|
|
- echo $HOST
|
|
- echo $test
|
|
when:
|
|
event: push
|
|
branch: master |