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

34 lines
723 B
YAML
Raw Normal View History

2021-04-01 01:32:03 -05:00
---
kind: pipeline
type: docker
name: Deploy to bbaovanc.com
steps:
2021-04-14 00:19:39 -05:00
- name: Update submodules
image: alpine/git
commands:
- git submodule update --init --recursive
2021-04-01 01:32:03 -05:00
- name: Build site
image: mapitman/docker-hugo
commands:
- hugo version
- hugo --minify
- name: Compress public folder
image: alpine/latest
commands:
- tar -czvf deploy.tar.gz public/*
2021-04-14 00:33:32 -05:00
2021-04-01 01:32:03 -05:00
- name: Upload files
image: appleboy/drone-scp
2021-04-14 00:25:31 -05:00
settings:
2021-04-01 01:32:03 -05:00
host: bbaovanc.com
port: 2222
username: droneci
key:
from_secret: SSH_KEY
target: /tmp/blog/
2021-04-01 01:32:03 -05:00
rm: true
source: deploy.tar.gz