From 72d57962356efa9f20ebd3ce79a78d0af8e33fd6 Mon Sep 17 00:00:00 2001 From: Vic Kerr Date: Wed, 3 Apr 2024 12:22:04 +0000 Subject: [PATCH] e2e: fix cleanup (?) 0fa73f200a93a912fbadc1e45e9edc625e616edc did not fix it --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index bfbe1f28..42a648f1 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -31,7 +31,7 @@ jobs: name: Cleanup kind clusters id: post-run with: - run: "kind get clusters | xargs -I% kind delete cluster --name %" + run: "sh -c 'kind get clusters | xargs -I % kind delete cluster --name %'" - uses: actions/setup-go@v5 with: