30 lines
591 B
YAML
30 lines
591 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: plugins/hugo
|
|
settings:
|
|
hugo_version: 0.80.0
|
|
pull: always
|
|
url: https://gitea.derajnet.duckdns.org/deranjer/recipes
|
|
validate: true
|
|
|
|
- name: deploy
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: 192.168.1.150
|
|
target: /mnt/data/websites/recipes/site/
|
|
source: public/*
|
|
username:
|
|
from_secret: ssh_username
|
|
password:
|
|
from_secret: ssh_password
|
|
port:
|
|
from_secret: ssh_port
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
exclude:
|
|
- pull_request |