From a2ade413c20a98d52a6f83dc2459ce9d6d66663e Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Wed, 26 Nov 2025 10:02:35 +0100 Subject: [PATCH] Fix aarch64 image download by specifing the platform (#157316) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/builder.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index f295ed11db3..1f4ebd942b8 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -418,7 +418,7 @@ jobs: # Pull images from github container registry and verify signature docker pull "ghcr.io/home-assistant/amd64-homeassistant:${{ needs.init.outputs.version }}" - docker pull "ghcr.io/home-assistant/aarch64-homeassistant:${{ needs.init.outputs.version }}" + docker pull --platform linux/arm64 "ghcr.io/home-assistant/aarch64-homeassistant:${{ needs.init.outputs.version }}" validate_image "ghcr.io/home-assistant/amd64-homeassistant:${{ needs.init.outputs.version }}" validate_image "ghcr.io/home-assistant/aarch64-homeassistant:${{ needs.init.outputs.version }}"