From 2d87c7857eb0f5dca424de79b12533d8e92195a1 Mon Sep 17 00:00:00 2001 From: Alexandre Chapellon Date: Thu, 12 Dec 2024 16:34:09 +0100 Subject: [PATCH] change merging strategy to build the full matrix of targets --- .github/workflows/bumpVersions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bumpVersions.yml b/.github/workflows/bumpVersions.yml index 94ffe32aa..cb738219b 100644 --- a/.github/workflows/bumpVersions.yml +++ b/.github/workflows/bumpVersions.yml @@ -98,7 +98,7 @@ jobs: for i in {docker-compose,helm/*}/updatecli-matrix-targets.yaml; do TARGET=$(basename $(dirname $i)) echo -e "\n###### Building UpdateCli manifest for ${TARGET}\n" - yq '. *? load("alfresco-updatecli/deployments/values/supported-matrix.yaml") | explode(.)' ${i} | tee ./${TARGET}_merged.yaml + yq 'explode(.) *? (load("alfresco-updatecli/deployments/values/supported-matrix.yaml")|explode(.))' ${i} | tee ./${TARGET}_merged.yaml updatecli apply -c alfresco-updatecli/deployments/uber-manifest.tpl -v ./${TARGET}_merged.yaml done env: