From 364a7de28d0348d44054b10378b50a0a4b9f27af Mon Sep 17 00:00:00 2001 From: Salendarsingh Gaud Date: Mon, 27 Jul 2026 16:45:57 +0530 Subject: [PATCH] ci: tag pulled kmake image locally The checker scripts run Docker with the local kmake-image name. After pulling the versioned ECR image through the shared action, tag that pulled image as kmake-image:latest so the existing scripts can find it. Signed-off-by: Salendarsingh Gaud --- .github/workflows/checker.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/checker.yml b/.github/workflows/checker.yml index 5ba8917..9696c82 100644 --- a/.github/workflows/checker.yml +++ b/.github/workflows/checker.yml @@ -29,6 +29,12 @@ jobs: image: ${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }} registry: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com + - name: Tag docker image + run: | + docker tag \ + ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }} \ + kmake-image:latest + - name: Checkout code id: sync uses: qualcomm-linux/kernel-checkers/.github/actions/sync@main