From be4242ee9ec1e16b96fa5e0bd8b1decc449cc4e2 Mon Sep 17 00:00:00 2001 From: Kirill Plis Date: Mon, 16 Mar 2026 14:57:50 +0100 Subject: [PATCH] fix: remove commit skip if no changes were detected --- .github/workflows/kubernetes.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/kubernetes.yaml b/.github/workflows/kubernetes.yaml index 58ab28f..fee264b 100644 --- a/.github/workflows/kubernetes.yaml +++ b/.github/workflows/kubernetes.yaml @@ -197,10 +197,6 @@ jobs: git config user.email "$GIT_USER_EMAIL" git config user.name "$GIT_USER_NAME" git add . - if git diff --cached --quiet; then - echo "No changes to commit" - exit 0 - fi git commit -m "chore(deploy): set $ENV image tag to $VERSION" if [ "$PUSH_TO_ENV_TAG" = "true" ]; then echo "Set new image tag to $ENV"