summaryrefslogtreecommitdiff
path: root/.github/workflows/repo.hex.pm.yml
blob: a6655725335c450595b963e6f86489fdfb93b610 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: repo.hex.pm

on:
  push:
    branches:
      - main
      - v*.*

env:
  ELIXIR_OPTS: "--warnings-as-errors"
  ERLC_OPTS: "warnings_as_errors"
  LANG: C.UTF-8

jobs:
  release_pre_built:
    strategy:
      fail-fast: true
      matrix:
        include:
          - otp: 24
            otp_version: 24.3
          - otp: 25
            otp_version: 25.0
            build_docs: build_docs
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 50
      - uses: ./.github/workflows/release_pre_built
        with:
          otp_version: ${{ matrix.otp_version }}
          otp: ${{ matrix.otp }}
          build_docs: ${{ matrix.build_docs }}
      - name: Upload Docs to S3
        if: ${{ matrix.build_docs }}
        env:
          AWS_ACCESS_KEY_ID: ${{ secrets.HEX_AWS_ACCESS_KEY_ID }}
          AWS_SECRET_ACCESS_KEY: ${{ secrets.HEX_AWS_SECRET_ACCESS_KEY }}
          AWS_REGION: ${{ secrets.HEX_AWS_REGION }}
          AWS_S3_BUCKET: ${{ secrets.HEX_AWS_S3_BUCKET }}
          FASTLY_SERVICE_ID: ${{ secrets.HEX_FASTLY_SERVICE_ID }}
          FASTLY_KEY: ${{ secrets.HEX_FASTLY_KEY }}
        run: |
          function purge_key() {
            curl \
                -X POST \
                -H "Fastly-Key: ${FASTLY_KEY}" \
                -H "Accept: application/json" \
                -H "Content-Length: 0" \
                "https://api.fastly.com/service/${FASTLY_SERVICE_ID}/purge/$1"
          }

          version=$(echo ${{ github.ref_name }} | sed -e 's/^v//g')
          for f in doc/*; do
              if [ -d "$f" ]; then
                  app=`echo $f | sed s/"doc\/"//`
                  tarball="${app}-${version}.tar.gz"
                  surrogate_key="docs/${app}-${version}"
                  tar -czf "${tarball}" -C "doc/${app}" .
                  aws s3 cp "${tarball}" "s3://${{ env.AWS_S3_BUCKET }}/docs/${tarball}" \
                      --cache-control "public,max-age=3600" \
                      --metadata "{\"surrogate-key\":\"${surrogate_key}\",\"surrogate-control\":\"public,max-age=604800\"}"
                  purge_key "${surrogate_key}"
                  sleep 2
                  purge_key "${surrogate_key}"
                  sleep 2
                  purge_key "${surrogate_key}"
              fi
          done