substation/.drone.yml

29 lines
398 B
YAML
Raw Normal View History

2019-12-10 20:57:30 +00:00
---
2019-12-10 20:53:54 +00:00
kind: pipeline
2019-12-10 22:02:44 +00:00
type: ssh
name: ssh-build-deploy
server:
host:
from_secret: substationhost
user:
from_secret: scp_username
ssh_key:
from_secret: ssh_key
clone:
disable: false
steps:
2019-12-10 22:06:16 +00:00
- name: mkdocs build&deploy
2019-12-10 22:02:44 +00:00
commands:
- mkdocs build
- scp -r substation/ /home/terris/public_html/
2019-12-10 20:53:54 +00:00
trigger:
branch:
- master
event:
- push
2019-12-10 22:07:09 +00:00
...