25 lines
498 B
YAML
25 lines
498 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Deploy to bbaovanc.com
|
|
|
|
steps:
|
|
- name: Build site
|
|
image: mapitman/docker-hugo
|
|
commands:
|
|
- hugo version
|
|
- hugo --minify
|
|
|
|
- name: Upload files
|
|
image: appleboy/drone-scp
|
|
aettings:
|
|
host: bbaovanc.com
|
|
port: 2222
|
|
username: droneci
|
|
key:
|
|
from_secret: SSH_KEY
|
|
target: /var/www/bbaovanc/blog
|
|
rm: true
|
|
source:
|
|
- public/*
|