From 5b94f6c1f9eb6576492f25c9b56557db851442a2 Mon Sep 17 00:00:00 2001 From: Nikhil Acholiya <143185263+nacholiya@users.noreply.github.com> Date: Thu, 29 Jan 2026 15:49:52 +0530 Subject: [PATCH] ci: fix docker image smoke test to use python --version --- .github/workflows/docker-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 8e3a575f2..5625a5d87 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -66,7 +66,7 @@ jobs: IMAGE_ID=$(echo ${{ steps.meta.outputs.tags }} | cut -d ',' -f1) echo "Testing image $IMAGE_ID" docker pull $IMAGE_ID - docker run --rm $IMAGE_ID --help + docker run --rm $IMAGE_ID python --version - name: Run architecture tests on built image if: github.event_name != 'pull_request' @@ -121,4 +121,4 @@ jobs: path: ./helm-dist # In a real-world scenario, you would push to a Helm repository here - # This is a placeholder for that action \ No newline at end of file + # This is a placeholder for that action