Skip to content

Commit

Permalink
X-Region check new regions (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-dunn-sublime authored Oct 2, 2023
1 parent 190d6dc commit bc95f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_images_x_region.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function checkImages() {
repo=$1
primary_sha=$(aws ecr describe-images --region us-east-1 --repository-name $repo --image-ids imageTag=$tag | jq -r '.imageDetails[0].imageDigest')

for region in us-east-2 us-west-1 us-west-2 eu-west-1 eu-west-2; do
for region in us-east-2 us-west-1 us-west-2 eu-west-1 eu-west-2 ca-central-1 eu-central-2; do
sha=$(aws ecr describe-images --region $region --repository-name $repo --image-ids imageTag=$tag | jq -r '.imageDetails[0].imageDigest')

if [[ "$sha" != "$primary_sha" ]]; then
Expand Down

0 comments on commit bc95f39

Please sign in to comment.