aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker/preprod.yaml
blob: f3f8e793eea75c27d6ce0354a80da6ca6f1ee316 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
when:
  event:
    - push
    - pull_request
  branch: preprod
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