This commit is contained in:
parent
648ed87a91
commit
9623a74793
1 changed files with 18 additions and 0 deletions
18
.woodpecker.yml
Normal file
18
.woodpecker.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
pipeline:
|
||||||
|
build:
|
||||||
|
image: klakegg/hugo
|
||||||
|
commands:
|
||||||
|
- ls -al
|
||||||
|
- pwd
|
||||||
|
- hugo --minify --baseURL https://mzhang.io
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
image: alpine
|
||||||
|
commands:
|
||||||
|
- ls -al
|
||||||
|
- pwd
|
||||||
|
- echo "$SSH_SECRET_KEY" > SSH_SECRET_KEY
|
||||||
|
- echo "mzhang.io ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBzBZ+QmM4EO3Fwc1ZcvWV2IY9VF04T0H9brorGj9Udp" >> ~/.ssh/known_hosts
|
||||||
|
- rsync -azvrP -e "ssh -i SSH_SECRET_KEY" public/ sourcehutBuilds@mzhang.io:/mnt/storage/svcdata/blog-public
|
||||||
|
when:
|
||||||
|
branch: master
|
Loading…
Reference in a new issue