From a5d86beaf5f409d97ad16aceadf4b2ceffc7a6c1 Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Sun, 19 Apr 2026 18:10:05 +0200 Subject: [PATCH] ci: add DOCKER_HOST for DinD, use high-performance-latest tag --- .gitea/workflows/build.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index dd6a8a1..4794989 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -6,6 +6,10 @@ on: - main - high-performance +env: + DOCKER_HOST: tcp://docker-dind.gitea.svc.cluster.local:2375 + DOCKER_TLS_CERTDIR: "" + jobs: build: runs-on: ubuntu-latest @@ -27,5 +31,5 @@ jobs: docker buildx build --push \ -f Dockerfile \ -t "${{ secrets.REGISTRY_HOSTPORT }}/nxtgauge-frontend-solid:${{ gitea.sha }}" \ - -t "${{ secrets.REGISTRY_HOSTPORT }}/nxtgauge-frontend-solid:${{ gitea.ref }}-latest" \ + -t "${{ secrets.REGISTRY_HOSTPORT }}/nxtgauge-frontend-solid:high-performance-latest" \ .