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