From e826c619f8effb40dbbeb36297ef0e8a73f81564 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Fri, 3 Mar 2023 11:31:48 +0100 Subject: [PATCH] ci/cd - fix wrong quotes in delete-infra workflow --- .github/workflows/staging-delete-infra.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/staging-delete-infra.yml b/.github/workflows/staging-delete-infra.yml index beffa0240..960af0f5f 100644 --- a/.github/workflows/staging-delete-infra.yml +++ b/.github/workflows/staging-delete-infra.yml @@ -26,10 +26,10 @@ jobs: path: /tmp - run: tar xvf /tmp/terraform.tar -C / && mkdir ~/.ssh && touch ~/.ssh/id_rsa.pub - uses: azure/setup-kubectl@v3 - if: inputs.TYPE == "k8s" + if: inputs.TYPE == 'k8s' # Remove infra - run: kubectl delete daemonsets,replicasets,services,deployments,pods,rc,ingress,statefulsets --all --all-namespaces --timeout=60s ; kubectl delete pvc --all --timeout=60s ; kubectl delete pv --all --timeout=60s - if: inputs.TYPE == "k8s" + if: inputs.TYPE == 'k8s' continue-on-error: true env: KUBECONFIG: /tmp/k8s/kubeconfig