From 1fcb0558891aefcb273e3b90b2eeb14ca58f3206 Mon Sep 17 00:00:00 2001 From: Asa Gayle Date: Tue, 8 Feb 2022 13:44:12 -0500 Subject: [PATCH] Changed Helm 3.5.0 test to also test lack of v in version --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index f33fdee..9014f61 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -11,7 +11,7 @@ jobs: env: HELM_3_8_0: "v3.8.0" HELM_3_7_2: "v3.7.2" - HELM_3_5_0: "v3.5.0" + HELM_NO_V: "3.5.0" PR_BASE_REF: ${{ github.event.pull_request.base.ref }} steps: - name: Check out repository @@ -53,10 +53,10 @@ jobs: - name: Setup helm 3.5.0 uses: ./ with: - version: ${{ env.HELM_3_5_0 }} + version: ${{ env.HELM_NO_V }} - name: Validate 3.5.0 run: | - if [[ $(helm version) != *$HELM_3_5_0* ]]; then + if [[ $(helm version) != *$HELM_NO_V* ]]; then echo "HELM VERSION INCORRECT: HELM VERSION DOES NOT CONTAIN v3.5.0" echo "HELM VERSION OUTPUT: $(helm version)" exit 1