Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Fix deployments check
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentluce committed Aug 27, 2024
1 parent 954015f commit 939738e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 939738e

Please sign in to comment.