You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
484 B
YAML

kind: pipeline
name: publish
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: build
image: code.ndumas.com/ndumas/quartz
commands:
- ls
- cat Makefile
- name: publish
image: drillster/drone-rsync
settings:
key:
from_secret: blog_sync_key
user: blog
delete: true
recursive: true
hosts: ["blog.ndumas.com"]
source: ./public/
target: /var/www/blog.ndumas.com/
include: ["*"]