leafee98-blog/.woodpecker/deploy.yml
leafee98 9697bf6b39
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
edit CI
2024-07-09 00:31:08 +08:00

15 lines
510 B
YAML

steps:
- name: build and deploy
when:
- branch: main
event: push
image: 'myhugo:0.3'
commands:
- 'hugo'
- 'find public -mindepth 1 -not -type d -printf "%P\n" > /tmp/filelist'
- 'tar -cf public.tar.gz --gzip -C public -T /tmp/filelist'
- 'response=$(curl --silent --user $HTTP_USER:$HTTP_PASS --data-binary @public.tar.gz $HTTP_ENDPOINT)'
- 'echo "$response"'
- 'test "$response" = "Success"'
secrets: [ http_user, http_pass, http_endpoint ]