34 lines
648 B
YAML
34 lines
648 B
YAML
pipeline:
|
|
build-draft:
|
|
image: plugins/hugo
|
|
hugoVersion: 0.52
|
|
validate: true
|
|
buildDrafts: true
|
|
buildExpired: true
|
|
buildFuture: true
|
|
theme: geeklab
|
|
when:
|
|
branch: draft
|
|
event: push
|
|
|
|
build-prod:
|
|
image: plugins/hugo
|
|
hugoVersion: 0.52
|
|
validate: true
|
|
buildFuture: true
|
|
theme: geeklab
|
|
when:
|
|
branch: master
|
|
event: push
|
|
|
|
publish:
|
|
image: appleboy/drone-scp
|
|
source: public/*
|
|
target: /var/www/virtual/geeklab/html/geeklabor.de/
|
|
secrets: [ ssh_host, ssh_username, ssh_key ]
|
|
strip_components: 1
|
|
rm: true
|
|
when:
|
|
branch: master
|
|
event: push
|