blog/.drone.yml

43 lines
806 B
YAML
Raw Normal View History

2020-07-15 00:44:59 +02:00
kind: pipeline
name: default
clone:
disable: true
steps:
- name: clone
image: plugins/git
recursive: true
- name: build
image: klakegg/hugo
commands:
- hugo version
2020-07-15 17:09:03 +02:00
- hugo --minify
2020-07-15 01:36:56 +02:00
environment:
HUGO_ENV: production
2020-07-15 00:44:59 +02:00
- name: deploy
image: appleboy/drone-scp
settings:
2020-07-15 17:09:03 +02:00
source: public/*
strip_components: 1 # Make sure the tarball doesn't contain leading path
2020-07-15 00:44:59 +02:00
rm: true # Make sure only the newly generated files are left
host:
from_secret: ssh_host
target:
from_secret: ssh_target
username:
from_secret: ssh_user
key:
from_secret: ssh_key
port:
from_secret: ssh_port
when:
branch:
- master
event:
exclude:
- pull_request