Skip to content

Commit

Permalink
test more compact if
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Dec 2, 2024
1 parent c33be57 commit cdb743d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/helm-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cdb743d

Please sign in to comment.