From 842b6a745afb3a589e97f55059a6ec81c2d69a61 Mon Sep 17 00:00:00 2001 From: Benjamin Lindner Date: Mon, 28 Jul 2025 12:20:22 +0200 Subject: [PATCH] chore: Limit buildx of image-builder workflow to amd64 arch only --- .github/workflows/build-image.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 3efbd259b0..0044f81205 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -46,6 +46,8 @@ jobs: name: lifecycle-manager dockerfile: Dockerfile context: . + platforms: | + linux/amd64 # tags are additional tags that will be added to the image on top of the default ones # default tags are documented here: https://github.com/kyma-project/test-infra/tree/main/cmd/image-builder#default-tags tags: ${{ needs.get-custom-tags.outputs.tags }}