From 83cccf49877f028bf02f7dec58aac7d39b2c7ba8 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sat, 16 May 2026 20:16:38 -0700 Subject: [PATCH] fix: add missing build context and --push flag to CI base image workflow The docker build command was missing the build context path (.) and the --push flag to actually push to the registry after building. --- .gitea/workflows/build-ci-images.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-ci-images.yml b/.gitea/workflows/build-ci-images.yml index 394e164..f5483f1 100644 --- a/.gitea/workflows/build-ci-images.yml +++ b/.gitea/workflows/build-ci-images.yml @@ -52,12 +52,13 @@ jobs: - name: Build and push CI base image run: | - # Build with multiple tags docker build \ --file Dockerfile.ci-base \ --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:latest \ --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:playwright-${{ steps.meta.outputs.playwright_version }} \ --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:${{ github.sha }} \ + --push \ + . - name: Clean up if: always()