From d8e20315877ea672467a2a8c69ef36d9767b5a20 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Wed, 13 Nov 2024 01:28:18 +0100 Subject: [PATCH] chore(snippets/aws): add listing deployments to be done --- snippets/aws/deployments.fish | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/snippets/aws/deployments.fish b/snippets/aws/deployments.fish index e285cde..86422fc 100644 --- a/snippets/aws/deployments.fish +++ b/snippets/aws/deployments.fish @@ -1,6 +1,7 @@ #!/usr/bin/env fish aws deploy list-applications + aws deploy list-deployment-groups --application-name 'Evidently' aws deploy get-deployment-group --application-name 'Evidently' --deployment-group-name 'production' --output 'json' | pbcopy @@ -11,3 +12,7 @@ diff -y -W 200 \ aws deploy create-deployment --application-name 'Evidently' --deployment-group-name 'staging' \ --description 'This is Evidently a deployment (☞゚∀゚)☞' \ --s3-location 'bundleType=zip,bucket=deployments-bucket,key=evidently-master-staging.zip' + +aws deploy list-deployments --application-name 'Evidently' --deployment-group-name 'production' \ + --include-only-statuses 'Created' 'Queued' 'InProgress' +aws deploy get-deployment --deployment-id 'd-JNCR4R7F8'