From a7ddc95a7b100d1fbbb6bd652cd16d41d71c465a Mon Sep 17 00:00:00 2001 From: ilia Date: Sat, 10 Jan 2026 15:15:45 -0500 Subject: [PATCH] Fix docker-build-test: Load image into local Docker daemon ISSUE: ====== - Docker build succeeds but test fails - Error: Unable to find image 'pote:test' locally - Image built in buildx builder but not loaded into local daemon - docker run can't find the image to test FIX: ==== - Added load: true to docker/build-push-action - Loads image into local Docker daemon after build - Allows docker run to test the image CHANGES: ======== - docker-build-test job: Added load: true to build-push-action - Image is now available in local daemon for testing This ensures the Docker image can be tested after building. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6389cd..e002b16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -420,6 +420,7 @@ jobs: with: context: . push: false + load: true tags: pote:test cache-from: type=gha cache-to: type=gha,mode=max