From 239ea84fb6e386a570597065f0ae92a4287a1554 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Mon, 2 Jan 2023 15:57:54 +0100 Subject: [PATCH] Build docker images for x86 only Building for ARM currently takes ages on GitHub, so until we really need it, build for x86 only. --- .github/workflows/docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index c728b4b..4e02414 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -47,7 +47,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}