riq0h.jp/.woodpecker/.woodpecker.yml

27 lines
469 B
YAML
Raw Normal View History

2023-08-21 10:07:01 +09:00
clone:
git:
image: woodpeckerci/plugin-git
settings:
recursive: true
steps:
build:
image: klakegg/hugo:ext-alpine
commands:
- hugo -D
deploy:
2023-08-21 15:21:04 +09:00
image: appleboy/drone-scp
2023-08-21 15:50:13 +09:00
secrets: [HOST, SSH, PORT]
2023-08-21 15:21:04 +09:00
settings:
host:
2023-08-21 15:50:13 +09:00
from_secret: HOST
2023-08-21 15:21:04 +09:00
username: riq0h
2023-08-21 15:32:54 +09:00
key:
from_secret: SSH
2023-08-21 15:50:13 +09:00
port:
from_secret: PORT
2023-08-21 15:39:23 +09:00
target: /var/www/html/
2023-08-21 15:21:04 +09:00
source:
- public
2023-08-21 15:39:23 +09:00
overwrite: true