From 5c462e5eaf96878e5e0881cc1aec19ecbdfe0924 Mon Sep 17 00:00:00 2001 From: vlakoff <544424+vlakoff@users.noreply.github.com> Date: Thu, 30 Apr 2026 00:20:29 +0200 Subject: [PATCH] Use local context for docker build to support Merge Queue * Updates docker.yml to set the build context to the local directory. * This prevents "ref not found" errors when the workflow runs on temporary branches generated by the GitHub Merge Queue. * Ensures the Docker builder utilizes the files already present in the runner's workspace from the checkout step. --- .github/workflows/docker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5078f551..34ca89a6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -30,6 +30,7 @@ jobs: id-token: write attestations: write with: + context: . # Use local checkout to support GitHub Merge Queue output: image platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }}