From f27b7cefffbc7b079bb7c0d0ab99ee628f8fd5a0 Mon Sep 17 00:00:00 2001 From: Simon Rupf Date: Sat, 19 Jun 2021 11:08:10 +0200 Subject: [PATCH] remove i386 build to allow the other architecture's images to be produced Alpine doesn't build a x86 package for php/imagick anymore, due to: https://github.com/Imagick/imagick/issues/385 --- .github/workflows/build-images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index af35c8b..204f1b0 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -21,7 +21,7 @@ jobs: VERSION=${GITHUB_REF##*/} echo ::set-output name=buildx_args::--tag ${IMAGE}:latest \ --tag ${IMAGE}:${VERSION} \ - --platform linux/amd64,linux/386,${QEMU_PLATFORMS} . + --platform linux/amd64,${QEMU_PLATFORMS} . echo ::set-output name=qemu_platforms::${QEMU_PLATFORMS} - name: Set up QEMU uses: docker/setup-qemu-action@v1