From 939738e62ad3574ed249bbf3066686035ef37828 Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Tue, 27 Aug 2024 18:16:48 -0400 Subject: [PATCH] Fix deployments check --- .github/workflows/ci_wip.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_wip.yml b/.github/workflows/ci_wip.yml index d77828d..fcdfc8a 100644 --- a/.github/workflows/ci_wip.yml +++ b/.github/workflows/ci_wip.yml @@ -65,7 +65,7 @@ jobs: tenant_id=${{ steps.tenant.outputs.id }} deployments=$(curl http://localhost:8080/tenant/${tenant_id}/cluster-resources | jq -r '.deployments[].metadata.name') echo ${deployments} - if [ "${deployments}" != "postgres-prod\nproductcatalogservice-prod\ncartservice-prod\nfrontend-prod" ]; then exit 1; fi + if [ "${deployments}" != "postgres-prod productcatalogservice-prod cartservice-prod frontend-prod" ]; then exit 1; fi - name: Create, validate and delete flow run: |