BBaoVanC
54ebcd5c69
Some checks reported errors
continuous-integration/drone/push Build encountered an error
32 lines
624 B
YAML
32 lines
624 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Deploy to bbaovanc.com
|
|
|
|
steps:
|
|
- name: Update submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: Build site
|
|
image: mapitman/docker-hugo
|
|
commands:
|
|
- hugo version
|
|
- hugo --minify -d blog/
|
|
|
|
- name:
|
|
|
|
- name: Upload files
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: bbaovanc.com
|
|
port: 2222
|
|
username: droneci
|
|
key:
|
|
from_secret: SSH_KEY
|
|
target: /tmp/
|
|
rm: true
|
|
source:
|
|
- blog/
|