You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
469 B
26 lines
469 B
kind: pipeline
|
|
type: docker
|
|
name: hugo-build
|
|
|
|
steps:
|
|
- name: build
|
|
image: klakegg/hugo:latest
|
|
commands:
|
|
- hugo --minify --baseURL https://www.eryang.wang/
|
|
|
|
- name: deploy
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: eryang.wang
|
|
username: ecs-user
|
|
password:
|
|
from_secret: ssh_password
|
|
port: 22
|
|
target: /opt/docker/www/www.eryang.wang/
|
|
source: public/*
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|