From c036a2dddb8712a0b0400f7b3db1faedeeb08e37 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Fri, 3 Sep 2021 12:07:03 +0200 Subject: [PATCH] fix mistake when there is an incubator and a stable app, the incubator apps should be the one that is tested --- .github/workflows/apps.test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/apps.test.yaml b/.github/workflows/apps.test.yaml index 6fdf92fec49..c4667219376 100644 --- a/.github/workflows/apps.test.yaml +++ b/.github/workflows/apps.test.yaml @@ -98,10 +98,10 @@ jobs: if: ${{ matrix.app != '.gitkee' }} id: prep-lint run: | - if test -f "./charts/stable/${{ matrix.app }}/Chart.yaml"; then - train="stable" - elif test -f "./charts/incubator/${{ matrix.app }}/Chart.yaml"; then + if test -f "./charts/incubator/${{ matrix.app }}/Chart.yaml"; then train="incubator" + else if test -f "./charts/stable/${{ matrix.app }}/Chart.yaml"; then + train="stable" elif test -f "./charts/library/${{ matrix.app }}/Chart.yaml"; then train="library" else