Skip to content

Commit

Permalink
I forgot to add the result as a github actions output.
Browse files Browse the repository at this point in the history
  • Loading branch information
jforest committed Oct 23, 2024
1 parent 56d7f36 commit 1949dc0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/chart-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ jobs:
- name: Run chart-testing (lint changed)
id: ct-lint
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch main --chart-dirs charts --chart-dirs other-charts
run: |
{
echo 'result<<EOF'
ct lint --target-branch main --chart-dirs charts --chart-dirs other-charts
echo 'EOF'
} >> $GITHUB_OUTPUT
continue-on-error: true

- name: Run chart-testing (lint all)
Expand Down

0 comments on commit 1949dc0

Please sign in to comment.