contents of rezept-schneider.de
https://rezept-schneider.de
You can not 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
620 B
26 lines
620 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --recursive --remote
|
|
|
|
- name: build
|
|
image: cbrgm/drone-hugo:latest
|
|
settings:
|
|
validate: true
|
|
output: public/drone-generated
|
|
url: https://rezept-schneider.de
|
|
|
|
- name: deploy
|
|
image: drillster/drone-rsync
|
|
secrets: [ rsync_key ]
|
|
settings:
|
|
hosts: [ "rezept-schneider.de" ]
|
|
target: /var/www/html/rezeptschneider/public/
|
|
source: public/drone-generated/
|
|
user: deploy-rezept
|
|
|