From 79c310b6927d56d008e21cdf5778dbad9fbee2d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Tue, 27 Feb 2024 09:33:02 +0100 Subject: [PATCH] drop ppc64le support --- .github/workflows/build-publish-containers.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-publish-containers.yml b/.github/workflows/build-publish-containers.yml index 527696dd..411ee5cd 100644 --- a/.github/workflows/build-publish-containers.yml +++ b/.github/workflows/build-publish-containers.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: tag: ['client:centos7', 'build-node:debian11', 'build-node:debian12'] - platform: [amd64, arm64, ppc64le] + platform: [amd64, arm64] steps: - name: Check out the repo @@ -110,8 +110,7 @@ jobs: run: | docker buildx imagetools create -t ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ matrix.tag }} \ ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ matrix.tag }}-amd64 \ - ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ matrix.tag }}-arm64 \ - ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ matrix.tag }}-ppc64le + ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ matrix.tag }}-arm64 - name: Inspect the final image if: github.event_name != 'pull_request'