hyteck-blog/.woodpecker.yml

26 lines
420 B
YAML
Raw Normal View History

2023-01-24 17:02:56 +01:00
---
2024-04-16 22:04:47 +02:00
steps:
2023-01-24 16:36:49 +01:00
build:
2023-01-24 17:13:42 +01:00
image: klakegg/hugo
2023-01-24 17:02:56 +01:00
commands:
2023-01-24 18:49:44 +01:00
- hugo
2024-04-17 07:16:39 +02:00
when:
- event: push
- event: manual
2023-01-24 16:36:49 +01:00
deploy:
2023-01-24 17:18:58 +01:00
image: appleboy/drone-scp
2023-01-24 16:36:49 +01:00
settings:
2023-01-24 18:52:48 +01:00
strip_components: 1
2023-01-24 16:36:49 +01:00
host:
- reinmuth.uberspace.de
username: moanos
2023-01-24 18:58:42 +01:00
target: /home/moanos/html/
2023-01-24 18:52:48 +01:00
source: public/
2023-01-24 16:36:49 +01:00
key:
from_secret: ssh_key
2024-04-17 07:16:39 +02:00
when:
- event: push
- event: manual