From d2464379843efccaafd9fb7e9b622b2714257f65 Mon Sep 17 00:00:00 2001 From: Ales Pour Date: Tue, 11 Oct 2022 15:13:51 +0200 Subject: [PATCH] chore: make install check fail asap on error --- .github/workflows/helm-charts-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/helm-charts-test.yaml b/.github/workflows/helm-charts-test.yaml index 9e48a2e7..94166d51 100644 --- a/.github/workflows/helm-charts-test.yaml +++ b/.github/workflows/helm-charts-test.yaml @@ -67,6 +67,7 @@ jobs: - name: Run chart-testing (install) id: install run: | + set -o pipefail; ct install --namespace=default 2>&1 | tee $RUNNER_TEMP/$GITHUB_RUN_NUMBER.txt # When https://github.com/helm/chart-testing/issues/212 is fixed, this can be used to set the license key instead of using env from secret # run: ct install --namespace=default --helm-extra-args="--set license.key=${INFLUXDB_ENTERPRISE_LICENSE_KEY}"