Skip to content

Commit

Permalink
fix: Update Helm lint command to check for "failed" instead of "[ERRO…
Browse files Browse the repository at this point in the history
…R]".
  • Loading branch information
jay-bisonai committed Feb 9, 2024
1 parent a91fe37 commit c3b546a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.helm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Run Helm lint
uses: WyriHaximus/github-action-helm3@v3
with:
exec: find . -name 'Chart.yaml' -exec dirname {} \; | xargs -I {} helm lint {} | tee /dev/fd/2 | grep "\[ERROR\]" && exit 1 || exit 0
exec: find . -name 'Chart.yaml' -exec dirname {} \; | xargs -I {} helm lint {} | tee /dev/fd/2 | grep "failed" && exit 1 || exit 0

0 comments on commit c3b546a

Please sign in to comment.