From 468dd524e8dea6f4af6f792957c4c5326e7fe790 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Mon, 24 May 2021 02:10:35 +0200 Subject: [PATCH] allow non-scale helmcharts and don't push them to the SCALE catalog --- .github/workflows/apps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/apps.yaml b/.github/workflows/apps.yaml index 6ec9527445a..0d445df789b 100644 --- a/.github/workflows/apps.yaml +++ b/.github/workflows/apps.yaml @@ -312,7 +312,7 @@ jobs: for train in stable incubator develop non-free deprecated do for chart in master/charts/${train}/*; do - if [ -d "${chart}" ]; then + if [ -d "${chart}/SCALE" ]; then maxchartversion=$(cat ${chart}/Chart.yaml | grep "^version: " | awk -F" " '{ print $2 }') chartname=$(basename ${chart}) echo "Processing... Copying charts... Chart: ${chartname} - Version: ${maxchartversion}"