2
0
mirror of https://github.com/tildeclub/site synced 2024-06-23 09:17:04 +00:00
site/.drone.yml

31 lines
451 B
YAML
Raw Normal View History

2019-12-08 07:20:16 +00:00
---
kind: pipeline
type: ssh
name: deploy
server:
host:
from_secret: host
user:
from_secret: username
ssh_key:
from_secret: ssh_key
clone:
disable: true
trigger:
branch:
- master
steps:
- name: deploy
commands:
2019-12-08 07:31:03 +00:00
- cd /usr/share/nginx/html
2019-12-08 07:20:16 +00:00
- git pull origin master
- name: build-wiki
commands:
2019-12-08 07:31:03 +00:00
- cd /usr/share/nginx/html
- make -C wiki
2019-12-08 07:20:16 +00:00