From 7c569817a250c5f75ca596d02f540a416dc14dd4 Mon Sep 17 00:00:00 2001 From: Christian Kotzbauer Date: Sat, 9 Oct 2021 09:19:41 +0200 Subject: [PATCH] fix: pipeline Signed-off-by: Christian Kotzbauer --- .github/workflows/lint-test.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index fb5408c..15bf2e2 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -23,22 +23,20 @@ jobs: - name: Set up chart-testing uses: helm/chart-testing-action@v2.1.0 - - run: ct list-changed --print-config --target-branch main - - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --target-branch=main) + changed=$(ct list-changed --target-branch main) if [[ -n "$changed" ]]; then echo "::set-output name=changed::true" fi - name: Run chart-testing (lint) - run: ct lint + run: ct lint --target-branch main - name: Create kind cluster uses: helm/kind-action@v1.2.0 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) - run: ct install \ No newline at end of file + run: ct install --target-branch main \ No newline at end of file