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
522 B
YAML
26 lines
522 B
YAML
kind: pipeline
|
|
name: update-blog
|
|
|
|
clone:
|
|
depth: 1
|
|
|
|
steps:
|
|
- name: build
|
|
image: code.ndumas.com/ndumas/drone-hugo:latest
|
|
commands:
|
|
- go get github.com/therealfakemoot/hugo-webring-partial@latest
|
|
- hugo --enableGitInfo --minify
|
|
- name: publish
|
|
image: drillster/drone-rsync
|
|
settings:
|
|
key:
|
|
from_secret: BLOG_DEPLOY_KEY
|
|
user: blog
|
|
port: 22
|
|
delete: true
|
|
recursive: true
|
|
hosts: ["hugo-demo.ndumas.com"]
|
|
source: public/
|
|
target: /var/www/hugo-demo.ndumas.com/
|
|
include: ["*"]
|