aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker.yaml
blob: 2f4d6d2b809f7bcc9df1cac110eb03bf24b4f3c2 (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
31
32
33
34
35
36
steps:
  - name: upload (preprod)
    when:
      branch:
        - preprod
    image: plugins/s3
    settings:
      bucket: preprod-site
      endpoint: https://garage.deuxfleurs.fr
      region: garage
      access_key:
        from_secret: aws_access_key_id
      secret_key:
        from_secret: aws_secret_access_key
      source: static/**/*
      target: /
      strip_prefix: static/
      path_style: true

  - name: upload (prod)
    when:
      - event: push
        branch: main
    image: plugins/s3
    settings:
      bucket: 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: static/**/*
      target: /
      strip_prefix: static/
      path_style: true