All checks were successful
continuous-integration/drone/push Build is passing
30 lines
598 B
YAML
30 lines
598 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: git-lfs
|
|
image: alpine/git
|
|
commands:
|
|
- git lfs install
|
|
- git lfs pull
|
|
- name: build
|
|
image: git.ipng.ch/ipng/drone-hugo:release-0.130.0
|
|
settings:
|
|
hugo_version: 0.130.0
|
|
extended: true
|
|
- name: rsync
|
|
image: drillster/drone-rsync
|
|
settings:
|
|
user: pap
|
|
key:
|
|
from_secret: drone_sshkey
|
|
hosts:
|
|
- srv01.hpdw.nl
|
|
port: 22
|
|
args: '-6'
|
|
source: public/
|
|
target: /var/www/htdocs/pap/nose/
|
|
delete: true
|
|
recursive: true
|
|
secrets: [ drone_sshkey ]
|