From 0b38b407b00c2bc24f9f6b8f0d684c7b6af8cb74 Mon Sep 17 00:00:00 2001 From: Kyle Kyrazis Date: Mon, 10 Aug 2026 13:54:39 -0400 Subject: [PATCH] Add multi-arch builds for c10s and c9s pg18 images Assisted-by: Claude --- .github/workflows/build-and-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index 5dc7ee5f..43112464 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -87,8 +87,8 @@ jobs: docker_context: 18 steps: - - name: check if Dockerfile is c9s, then Build multi arch image and push to quay.io registry - if: matrix.dockerfile == '13/Dockerfile.c9s' || matrix.dockerfile == '15/Dockerfile.c9s' || matrix.dockerfile == '16/Dockerfile.c9s' + - name: Build multi arch image and push to quay.io registry + if: matrix.dockerfile == '13/Dockerfile.c9s' || matrix.dockerfile == '15/Dockerfile.c9s' || matrix.dockerfile == '16/Dockerfile.c9s' || matrix.dockerfile == '18/Dockerfile.c9s' || contains(matrix.dockerfile, '.c10s') uses: sclorg/build-and-push-action@v4 with: registry: "quay.io" @@ -101,8 +101,8 @@ jobs: image_name: ${{ matrix.image_name }} archs: amd64, s390x, ppc64le, arm64 - - name: Check if Dockerfile is not c9s, then Build and push to quay.io registry - if: matrix.dockerfile != '13/Dockerfile.c9s' && matrix.dockerfile != '15/Dockerfile.c9s' && matrix.dockerfile != '16/Dockerfile.c9s' + - name: Build single arch image and push to quay.io registry + if: matrix.dockerfile != '13/Dockerfile.c9s' && matrix.dockerfile != '15/Dockerfile.c9s' && matrix.dockerfile != '16/Dockerfile.c9s' && matrix.dockerfile != '18/Dockerfile.c9s' && !contains(matrix.dockerfile, '.c10s') uses: sclorg/build-and-push-action@v4 with: registry: "quay.io"