Skip to content

Commit

Permalink
Add ap-southeast-2 to x-region checks
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-dunn-sublime committed Oct 5, 2023
1 parent 9ddd9a8 commit 33baafd
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 ca-central-1 eu-central-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 ap-southeast-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 33baafd

Please sign in to comment.