From d49b236a3b2fbedf4b3f0ed0431dc347c97ec4d3 Mon Sep 17 00:00:00 2001 From: dvirlabs <114520947+dvirlabs@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:11:21 +0300 Subject: [PATCH] Fix double quots --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6029b6c..c08f404 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -41,7 +41,7 @@ steps: echo "💡 Setting status-api image tag to: $TAG" yq -i ".api.image.tag = \"$TAG\"" manifests/gitops-status-server/values.yaml git add manifests/gitops-status-server/values.yaml - 'git commit -m "ci: update status-api tag to $TAG" || echo "No changes"' + git commit -m "ci: update status-api tag to $TAG" || echo "No changes" git push origin HEAD trigger-gitops: @@ -62,5 +62,5 @@ steps: - cd apps-gitops - echo "# trigger at $(date) by gitops-status-api" >> .trigger - git add .trigger - - 'git commit -m "ci: trigger apps-gitops build (gitops-status-api)" || echo "no changes"' + - git commit -m "ci: trigger apps-gitops build (gitops-status-api)" || echo "no changes" - git push origin HEAD