This repository has been archived on 2021-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
blog/.drone.yml

42 lines
796 B
YAML
Raw Permalink Normal View History

---
kind: pipeline
type: docker
name: Deploy to bbaovanc.com
trigger:
branch:
- master
event:
exclude:
- pull_request
steps:
2021-04-18 15:21:40 -05:00
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
2021-04-18 15:21:40 -05:00
- name: build
2021-05-12 10:46:06 -05:00
image: bbaovanc/hugo
commands:
- hugo version
- hugo --minify
2021-04-24 23:03:37 -05:00
- name: list files
2021-04-18 15:21:40 -05:00
image: alpine:latest
commands:
2021-04-24 23:03:37 -05:00
- find public/
2021-04-18 15:21:40 -05:00
- name: upload
image: appleboy/drone-scp
settings:
host: bbaovanc.com
port: 2222
username: droneci
key:
from_secret: SSH_KEY
target: /var/www/bbaovanc/blog/
rm: true
source: public/
strip_components: 1