diff options
Diffstat (limited to '.woodpecker/preprod.yaml')
-rw-r--r-- | .woodpecker/preprod.yaml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.woodpecker/preprod.yaml b/.woodpecker/preprod.yaml new file mode 100644 index 0000000..29c03b8 --- /dev/null +++ b/.woodpecker/preprod.yaml @@ -0,0 +1,31 @@ +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 + when: + branch: + - preprod + image: plugins/s3 + settings: + bucket: preprod-guide + 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/ + path_style: true |