|
| 1 | +--- |
| 2 | +name: "Release" |
| 3 | +on: # yamllint disable-line rule:truthy |
| 4 | + push: |
| 5 | + tags: |
| 6 | + - "*" |
| 7 | +permissions: |
| 8 | + contents: "write" |
| 9 | + packages: "write" |
| 10 | +jobs: |
| 11 | + goreleaser: |
| 12 | + runs-on: "ubuntu-latest" |
| 13 | + env: |
| 14 | + KUSTOMIZER_ARTIFACT: "oci://ghcr.io/${{github.repository_owner}}/${{github.event.repository.name}}-manifests" |
| 15 | + steps: |
| 16 | + - uses: "actions/checkout@v3" |
| 17 | + with: |
| 18 | + fetch-depth: 0 |
| 19 | + - uses: "authzed/actions/setup-go@main" |
| 20 | + - uses: "authzed/actions/docker-login@main" |
| 21 | + with: |
| 22 | + github_token: "${{ secrets.GITHUB_TOKEN }}" |
| 23 | + # the release directory is gitignored, which keeps goreleaser from |
| 24 | + # complaining about a dirty tree |
| 25 | + - name: "Copy manifests to release directory" |
| 26 | + run: | |
| 27 | + mkdir release |
| 28 | + cp -R deploy release |
| 29 | + - name: "Set operator image in release manifests" |
| 30 | + uses: "mikefarah/yq@master" |
| 31 | + with: |
| 32 | + cmd: | |
| 33 | + yq eval '.images[0].newName="ghcr.io/${{github.repository_owner}}/${{github.event.repository.name}}"' -i ./release/deploy/kustomization.yaml |
| 34 | + yq eval '.images[0].newTag="${{ github.ref_name }}"' -i ./release/deploy/kustomization.yaml |
| 35 | + - name: "Build release bundle.yaml" |
| 36 | + uses: "karancode/kustomize-github-action@master" |
| 37 | + with: |
| 38 | + kustomize_build_dir: "release/deploy" |
| 39 | + kustomize_output_file: "release/bundle.yaml" |
| 40 | + - uses: "goreleaser/goreleaser-action@v2" |
| 41 | + with: |
| 42 | + distribution: "goreleaser-pro" |
| 43 | + version: "latest" |
| 44 | + args: "release --rm-dist" |
| 45 | + env: |
| 46 | + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
| 47 | + GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" |
| 48 | + - name: "Setup Kustomizer CLI" |
| 49 | + uses: "stefanprodan/kustomizer/action@main" |
| 50 | + - name: "Push release manifests" |
| 51 | + run: | |
| 52 | + kustomizer push artifact ${KUSTOMIZER_ARTIFACT}:${{ github.ref_name }} -k ./release/deploy \ |
| 53 | + --source=${{ github.repositoryUrl }} \ |
| 54 | + --revision="${{ github.ref_name }}/${{ github.sha }}" |
| 55 | + - name: "Tag latest release manifests" |
| 56 | + run: | |
| 57 | + kustomizer tag artifact ${KUSTOMIZER_ARTIFACT}:${GITHUB_REF_NAME} latest |
0 commit comments