Skip to content

Commit

Permalink
fix workflow (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrmr33 authored Mar 13, 2024
1 parent 6bdd138 commit 2d64409
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/bump-chart-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 2d64409

Please sign in to comment.