From cdb743d5940e54225f8c991ebac4b15bd12318e3 Mon Sep 17 00:00:00 2001 From: Giovanni Toraldo Date: Mon, 2 Dec 2024 09:47:33 +0100 Subject: [PATCH] test more compact if --- .github/workflows/helm-enterprise.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm-enterprise.yml b/.github/workflows/helm-enterprise.yml index d183ba438..bdfa68ec1 100644 --- a/.github/workflows/helm-enterprise.yml +++ b/.github/workflows/helm-enterprise.yml @@ -114,7 +114,7 @@ jobs: - name: Check if we want additional helm customizations id: configurable-extra-values run: | - if [ "${{ matrix.values }}" = "pre-release_values.yaml" ] || [ "${{ matrix.values }}" = "values.yaml" ]; then + if [[ "${{ matrix.values }}" == @(pre-release_values.yaml|values.yaml) ]]; then echo "Enabling clustered tests with 2 replicas" echo "helm_install_params=--set alfresco-repository.replicaCount=2" >> "$GITHUB_OUTPUT" fi