diff options
Diffstat (limited to '.woodpecker/main.yaml')
-rw-r--r-- | .woodpecker/main.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.woodpecker/main.yaml b/.woodpecker/main.yaml new file mode 100644 index 0000000..ff910e1 --- /dev/null +++ b/.woodpecker/main.yaml @@ -0,0 +1,27 @@ +when: + event: + - push + - pull_request + branch: main + +steps: + - name: build + image: alpine:3.17.2 + commands: + - apk update + - apk add zola + - zola build + + - name: upload + image: plugins/s3 + settings: + bucket: guide.deuxfleurs.fr + endpoint: https://garage.deuxfleurs.fr + region: garage + access_key: + from_secret: aws_access_key_id + secret_key: + from_secret: aws_secret_access_key + source: public/**/* + target: / + strip_prefix: public/
\ No newline at end of file |