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.
32 lines
584 B
YAML
32 lines
584 B
YAML
kind: pipeline
|
|
type: kubernetes
|
|
name: hugoweb
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: bitnami/git:latest
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: hugo
|
|
image: plugins/hugo
|
|
settings:
|
|
validate: true
|
|
hugo_version: 0.88.1
|
|
extended: true
|
|
|
|
- name: deploy
|
|
image: drillster/drone-rsync
|
|
settings:
|
|
hosts:
|
|
- "10.0.100.5"
|
|
target: /volume
|
|
source: public/*
|
|
user: snowball77
|
|
recursive: true
|
|
port: "22"
|
|
args: "-v"
|
|
secrets: [rsync_key]
|
|
key:
|
|
from_secret: rsync_key
|