From 3d22a0031def88170f532edb9a119ba9a5edefad Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Wed, 3 Nov 2021 09:17:25 +0100 Subject: [PATCH] Update test-helm-chart.yml --- .github/workflows/test-helm-chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-helm-chart.yml b/.github/workflows/test-helm-chart.yml index a800d12bda6..69bca6f08e5 100644 --- a/.github/workflows/test-helm-chart.yml +++ b/.github/workflows/test-helm-chart.yml @@ -56,13 +56,13 @@ jobs: # run all checks but version increment always when something changed - name: Run chart-testing (lint) - run: ct lint --config ct.yaml --target-branch ${{ steps.ct-branch-target.outputs.ct-branch }} --check-version-increment false + run: ct lint --config ct.yaml --target-branch ${{ steps.ct-branch-target.outputs.ct-branch }} --check-version-increment=false if: steps.list-changed.outputs.changed == 'true' # run version check only if not dev as in dev we have a `x.y.z-dev` version # x.y.z gets bumped automatically when doing a release - name: Run chart-testing (lint) - run: ct lint --config ct.yaml --target-branch ${{ steps.ct-branch-target.outputs.ct-branch }} --check-version-increment true + run: ct lint --config ct.yaml --target-branch ${{ steps.ct-branch-target.outputs.ct-branch }} --check-version-increment=true if: ${{ steps.list-changed.outputs.changed == 'true' && steps.ct-branch-target.outputs.ct-branch != 'dev' }} # - name: Create kind cluster