From 2924a9a06121fba011a15a21a6729d967d464456 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Fri, 31 Oct 2025 15:47:05 +0100 Subject: [PATCH] Fix: Use docker-build label for build job (Docker required) The build job needs Docker installed, but ubuntu-latest (node:16-bullseye) doesn't have Docker. Changed build job to use docker-build label with docker:latest image. NOTE: Runner .env must be updated manually with: docker-build:docker://docker:latest Then runner must be re-registered to pick up the new label. --- .gitea/workflows/production-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index 1631ae04..6ab26fc6 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -97,7 +97,7 @@ jobs: needs: test # Note: if condition might not work correctly in Gitea - always() might need different syntax # if: always() && (needs.test.result == 'success' || needs.test.result == 'skipped') - runs-on: ubuntu-latest + runs-on: docker-build # Uses docker:dind image with Docker pre-installed outputs: image_tag: ${{ steps.meta.outputs.tag }} commit_sha: ${{ steps.meta.outputs.commit_sha }}