aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker.yaml
blob: 1a962d992098136fa02cc0252947f13cb8406568 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
steps:
  - name: HTML syntax check
    image: debian:12
    # Debian has tidy 5.6.0, which complains about the "loading" tag in img.
    # We need a more recent version for now.
    commands:
      - DEBIAN_FRONTEND=noninteractive apt update -qq
      - DEBIAN_FRONTEND=noninteractive apt install -qq -y wget
      - wget -q https://github.com/htacg/tidy-html5/releases/download/5.8.0/tidy-5.8.0-Linux-64bit.deb
      - echo "59e594312207234f5a17455683c13c6bc47a89cb7bf994d493acfffb591d9830 tidy-5.8.0-Linux-64bit.deb" | sha256sum -c
      - DEBIAN_FRONTEND=noninteractive apt install -qq -y ./tidy-5.8.0-Linux-64bit.deb
      - tidy -q -e --drop-empty-elements no static/index.html

  - name: disable SEO indexing (on preprod only)
    when:
      event: [push, pull_request]
      branch: preprod
    image: debian:12 # Same as previous step to not have to download 2 images, but it could be any linux
    commands:
      - '[ -f static/robots.txt ] && echo "Disallow: /*"  >> static/robots.txt'

  - name: upload (preprod)
    when:
      event: [push, pull_request]
      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