fix(GRO-1633): add buildx network=host and provenance:false to web CI
CI / Test (pull_request) Successful in 20s
CI / Lint & Typecheck (pull_request) Successful in 25s
CI / Build & Push Docker Image (pull_request) Successful in 34s

GRO-1672 follow-up: mirror groombook/api CI fixes in groombook/web
- docker/setup-buildx-action: driver-opts network=host (DinD DNS fix)
- docker/build-push-action: provenance: false (registry push compat)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-24 18:15:14 +00:00
parent c83214cf42
commit f6e6c3d75f
+3
View File
@@ -78,6 +78,8 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
@@ -92,6 +94,7 @@ jobs:
context: .
file: Dockerfile
push: true
provenance: false
tags: |
git.farh.net/groombook/web:${{ steps.version.outputs.tag }}
${{ github.ref == 'refs/heads/main' && 'git.farh.net/groombook/web:latest' || '' }}