From e679783601f1266af5d040abf9e4c4a0fb3972f9 Mon Sep 17 00:00:00 2001 From: Igor Karpukhin Date: Thu, 15 Sep 2022 11:18:41 +0200 Subject: [PATCH] Fixed cleaner --- .github/actions/cleanup/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/cleanup/entrypoint.sh b/.github/actions/cleanup/entrypoint.sh index e07488ae68..3d76965857 100644 --- a/.github/actions/cleanup/entrypoint.sh +++ b/.github/actions/cleanup/entrypoint.sh @@ -143,7 +143,7 @@ delete_networkpeerings_for_project() { for connection in $(echo "$connections" | jq -cr '.[]'); do id=$(echo "$connection" | jq -r '.id') echo "Removing connection $id" - mongocli networking peering delete "$id" --force --projectId "$projectID" + mongocli atlas networking peering delete "$id" --force --projectId "$projectID" done }