From 994f36d0abe793765e2918663463845bb2c838d1 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Tue, 28 Nov 2023 16:55:25 +0100 Subject: [PATCH] =?UTF-8?q?catlin=20seems=20to=20ignore=20yml=20file?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … and only want yaml files… Signed-off-by: Vincent Demeester --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c6d03e3..d6b0227 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -33,9 +33,9 @@ jobs: - name: Run Catlin linting run: | set -Eeu - helm template task-oc . > task-oc.yml - cat task-oc.yml - catlin validate ./task-oc.yml + helm template task-oc . > task-oc.yaml + cat task-oc.yaml + catlin validate task-oc.yaml echo "WAT!" test-e2e: