From 1facfee53f83697c05002edc5596dd5c3215715c Mon Sep 17 00:00:00 2001 From: Matthieu Baerts Date: Thu, 27 Aug 2026 11:58:37 +0200 Subject: [PATCH] gh: docker: use the 'docker' driver Instead of docker-container which will fail when trying to get remote metadata for non already built images. Thanks to this modification, it is possible to build images for non already published images, e.g. when testing modifications in another repo. Signed-off-by: Matthieu Baerts --- .github/workflows/dockerhub.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 6a0cdc7..812b442 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -29,6 +29,8 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 + with: + driver: docker - name: Login to GHCR if: ${{ github.event_name == 'push' }}