From cecc168eff9eadebbd74f5e8ade8e735bb98a551 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 24 Apr 2022 14:19:54 +0200 Subject: [PATCH] Update CI --- .woodpecker/main.yml | 46 +++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/.woodpecker/main.yml b/.woodpecker/main.yml index 91198c1..218c042 100644 --- a/.woodpecker/main.yml +++ b/.woodpecker/main.yml @@ -5,6 +5,7 @@ workspace: pipeline: build: image: einar/hugo + pull: never commands: - git lfs pull - hugo --destination /checkout/public @@ -18,27 +19,24 @@ pipeline: - rm -f /checkout/public/.gitadd /checkout/public/.gitignore volumes: - /srv/www/htdocs/dennogumi.org:/site - #deploy: - #image: einar/drone-rsync - #pull: never - #settings: - #source: public/ - #target: /site/ - #recursive: true - #exclude: [".gitignore", ".gitadd"] - #volumes: - #- /srv/www/htdocs/dennogumi.org:/site - #notify: - #image: plugins/matrix - #settings: - #homeserver: https://conference.heavensinferno.net - #roomid: - #from_secret: roomid - #accesstoken: - #from_secret: access_token - #userid: - #from_secret: user_id - #when: - #status: - #- failure - #- success + deploy: + image: einar/hugo + pull: never + commands: + - rsync -aXHP /checkout/public/ /site/ --exclude .gitadd --exclude .gitignore + volumes: + - /srv/www/htdocs/dennogumi.org:/site + notify: + image: plugins/matrix + settings: + homeserver: https://conference.heavensinferno.net + roomid: + from_secret: roomid + accesstoken: + from_secret: access_token + userid: + from_secret: user_id + when: + status: + - failure + - success