From 9deddcb0648085714d002eae32aa28cea6ee2098 Mon Sep 17 00:00:00 2001 From: Ryan Conrad Date: Mon, 18 Sep 2023 20:34:24 -0500 Subject: [PATCH] fix the check to include unittest and the version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4168ca8..ae6ef33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,7 +142,7 @@ jobs: run: helm plugin list | sed 1d | awk '{print $1}' | grep -q '^unittest$' - name: Check that helm-unittest version is v0.3.4 - run: helm plugin list | sed 1d | awk '{print $2}' | grep -q '^v0.3.4$' + run: helm plugin list | sed 1d | awk -v OFS='\t' '{print $1, $2}' | grep $'unittest\t0.3.4$'