We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d73cdfb commit 179b1cdCopy full SHA for 179b1cd
.github/workflows/pr.yml
@@ -39,6 +39,7 @@ jobs:
39
helm: latest
40
41
- name: Verify helm chart is valid
42
+ id: helm-lint
43
run: |
44
helm lint --strict --set kpi.env.secret.DATABASE_URL=test --set kobotoolbox.kobocatDatabase=test --set kpi.version=test
45
@@ -47,7 +48,8 @@ jobs:
47
48
49
if [ "${{ steps.check-version.outcome }}" == "failure" ]; then
50
echo "The chart version ${CHART_VERSION} is not updated. Please update the version in Chart.yaml before merging."
- else
51
+ fi
52
+ if [ "${{ steps.helm-lint.outcome }}" == "failure" ]; then
53
echo "Helm chart linting failed. Please fix the issues before merging."
54
fi
55
exit 1
0 commit comments