chore: merge release/15.6
changes into develop
(#1320)
#221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update ccache | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- ".github/workflows/build-ccache.yml" | |
- "ansible/vars.yml" | |
- "Dockerfile" | |
workflow_dispatch: | |
env: | |
image_tag: public.ecr.aws/supabase/postgres:ccache | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
jobs: | |
settings: | |
runs-on: ubuntu-latest | |
outputs: | |
build_args: ${{ steps.args.outputs.result }} | |
steps: | |
- uses: actions/checkout@v3 | |
- id: args | |
uses: mikefarah/yq@master | |
with: | |
cmd: yq 'to_entries | map(select(.value|type == "!!str")) | map(.key + "=" + .value) | join("\n")' 'ansible/vars.yml' | |
build_image: | |
needs: settings | |
strategy: | |
matrix: | |
include: | |
- runner: [self-hosted, X64] | |
arch: amd64 | |
- runner: arm-runner | |
arch: arm64 | |
runs-on: ${{ matrix.runner }} | |
timeout-minutes: 180 | |
outputs: | |
image_digest: ${{ steps.build.outputs.digest }} | |
steps: | |
- run: docker context create builders | |
- uses: docker/setup-buildx-action@v3 | |
with: | |
endpoint: builders | |
- name: Configure AWS credentials - prod | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.PROD_AWS_ROLE }} | |
aws-region: "us-east-1" | |
- uses: docker/login-action@v2 | |
with: | |
registry: public.ecr.aws | |
- id: build | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
target: buildcache | |
build-args: | | |
CACHE_EPOCH=${{ github.event.repository.updated_at }} | |
${{ needs.settings.outputs.build_args }} | |
tags: ${{ env.image_tag }}_${{ matrix.arch }} | |
platforms: linux/${{ matrix.arch }} | |
merge_manifest: | |
needs: build_image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/setup-buildx-action@v3 | |
- name: Configure AWS credentials - prod | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.PROD_AWS_ROLE }} | |
aws-region: "us-east-1" | |
- uses: docker/login-action@v2 | |
with: | |
registry: public.ecr.aws | |
- name: Merge multi-arch manifests | |
run: | | |
docker buildx imagetools create -t ${{ env.image_tag }} \ | |
${{ env.image_tag }}_amd64 \ | |
${{ env.image_tag }}_arm64 |