fix(GRO-1633): add buildx network=host and provenance:false to web CI (#17)
CI / Test (push) Successful in 17s
CI / Lint & Typecheck (push) Successful in 19s
CI / Build & Push Docker Image (push) Successful in 9s

This commit was merged in pull request #17.
This commit is contained in:
2026-05-24 22:08:59 +00:00
parent c83214cf42
commit db892409ef
+3
View File
@@ -78,6 +78,8 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Log in to Gitea Container Registry - name: Log in to Gitea Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
@@ -92,6 +94,7 @@ jobs:
context: . context: .
file: Dockerfile file: Dockerfile
push: true push: true
provenance: false
tags: | tags: |
git.farh.net/groombook/web:${{ steps.version.outputs.tag }} git.farh.net/groombook/web:${{ steps.version.outputs.tag }}
${{ github.ref == 'refs/heads/main' && 'git.farh.net/groombook/web:latest' || '' }} ${{ github.ref == 'refs/heads/main' && 'git.farh.net/groombook/web:latest' || '' }}