2020-07-12 07:58:38 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
2020-07-12 08:20:37 +00:00
|
|
|
step:
|
|
|
|
- name: submodules
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
|
|
|
- git submodule update --recursive --init
|
2020-07-12 08:19:03 +00:00
|
|
|
|
2020-07-12 08:20:37 +00:00
|
|
|
- name: build
|
|
|
|
image: cbrgm/drone-hugo:latest
|
|
|
|
validate: true
|
|
|
|
url: http://moonside.games/docs/encompass
|
2020-07-12 07:58:38 +00:00
|
|
|
|
2020-07-12 08:20:37 +00:00
|
|
|
- name: deploy
|
|
|
|
image: drillster/drone-rsync
|
|
|
|
hosts: [ "moonside.games" ]
|
|
|
|
target: /var/www/docs/encompass
|
|
|
|
source: public/*
|
|
|
|
user: hugo
|
|
|
|
secrets: [ rsync_key ]
|