From 6657004da25c880f3baab431b9b2296c87af13ed Mon Sep 17 00:00:00 2001 From: Roi Kramer Date: Wed, 13 Mar 2024 17:38:13 +0200 Subject: [PATCH] fix workflow --- .github/workflows/bump-chart-dependencies.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/bump-chart-dependencies.yaml b/.github/workflows/bump-chart-dependencies.yaml index 3323683..78774b8 100644 --- a/.github/workflows/bump-chart-dependencies.yaml +++ b/.github/workflows/bump-chart-dependencies.yaml @@ -43,9 +43,7 @@ jobs: - name: Check Diff id: check-diff run: | - git diff --exit-code && (echo "Nothing to do" && echo "should_update=false" >> $GITHUB_OUTPUT && exit 0) || echo "Changes detected" - echo "should_update=true" >> $GITHUB_OUTPUT - + (git diff --exit-code && echo "Nothing to do" && echo "should_update=false" >> $GITHUB_OUTPUT) || (echo "Changes detected" && echo "should_update=true" >> $GITHUB_OUTPUT) - name: Update Chart Version if: steps.check-diff.outputs.should_update == 'true'