From d2867d9e0f630e12f06ccb67f7bb61cb2430c586 Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Wed, 4 Feb 2026 23:21:20 +0100 Subject: [PATCH] Fix --- .github/actions/builder/generic/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/builder/generic/action.yml b/.github/actions/builder/generic/action.yml index a3e8f0ff048..c3c0cac093d 100644 --- a/.github/actions/builder/generic/action.yml +++ b/.github/actions/builder/generic/action.yml @@ -101,7 +101,7 @@ runs: file: ${{ inputs.dockerfile }} platforms: ${{ steps.vars.outputs.platform }} push: ${{ inputs.push }} - cache-from: ${{ steps.cache.outcome == 'success' && "ghcr.io/home-assistant/${{ inputs.arch }}-homeassistant:latest" || '' }} + cache-from: ${{ steps.cache.outcome == 'success' && format('ghcr.io/home-assistant/{0}-homeassistant:latest', inputs.arch) || '' }} build-args: | BUILD_FROM=${{ inputs.base-image }} tags: ${{ inputs.tags }}