From e701e4dd701e8d7f2aed93ce077cdfa127b23879 Mon Sep 17 00:00:00 2001 From: Lukas Date: Thu, 12 Mar 2026 09:18:51 +0100 Subject: [PATCH] Run build-image job on host to access Docker CLI The node:22 container doesn't have Docker installed. Running on the host label executes directly on the VPS where Docker is available. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b330ead..ac8f8dc 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: build-image: if: startsWith(github.ref, 'refs/tags/') needs: check - runs-on: ubuntu-latest + runs-on: host steps: - uses: actions/checkout@v4