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.
This commit is contained in:
2026-05-16 20:16:38 -07:00
parent b162750a67
commit 83cccf4987
+2 -1
View File
@@ -52,12 +52,13 @@ jobs:
- name: Build and push CI base image - name: Build and push CI base image
run: | run: |
# Build with multiple tags
docker build \ docker build \
--file Dockerfile.ci-base \ --file Dockerfile.ci-base \
--tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:latest \ --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:playwright-${{ steps.meta.outputs.playwright_version }} \
--tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:${{ github.sha }} \ --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ci-base:${{ github.sha }} \
--push \
.
- name: Clean up - name: Clean up
if: always() if: always()