@@ -130,14 +130,14 @@ EOF
130
130
exit 0
131
131
fi
132
132
133
- echo --- Tagging AMIs as released
133
+ echo " --- Tagging AMIs as released"
134
134
if [[ $BUILDKITE_BRANCH == main || $BUILDKITE_TAG == " $BUILDKITE_BRANCH " || ${TAG_IS_RELEASED:- false} == true ]]; then
135
135
tag-ami " $linux_amd64_source_image_id " " $source_region " IsReleased true
136
136
tag-ami " $linux_arm64_source_image_id " " $source_region " IsReleased true
137
137
tag-ami " $windows_amd64_source_image_id " " $source_region " IsReleased true
138
138
fi
139
139
140
- echo --- Tagging elastic ci stack release version
140
+ echo " --- Tagging elastic ci stack release version"
141
141
echo " Note: the same AMI may be used in multiple versions of the elastic stack,"
142
142
echo " so we can't use the same tag key for each version."
143
143
if [[ $BUILDKITE_TAG == " $BUILDKITE_BRANCH " || ${TAG_VERSION:- false} == true ]]; then
@@ -146,7 +146,7 @@ if [[ $BUILDKITE_TAG == "$BUILDKITE_BRANCH" || ${TAG_VERSION:-false} == true ]];
146
146
tag-ami " $windows_amd64_source_image_id " " $source_region " " Version:${BUILDKITE_TAG} " true
147
147
fi
148
148
149
- echo --- Checking if there is a previously copy in the cache bucket
149
+ echo " --- Checking if there is a previously copy in the cache bucket"
150
150
s3_mappings_cache=$( printf " s3://%s/mappings-%s-%s-%s-%s.yml" \
151
151
" ${BUILDKITE_AWS_STACK_BUCKET} " \
152
152
" ${linux_amd64_source_image_id} " \
@@ -159,7 +159,7 @@ if aws s3 cp "${s3_mappings_cache}" "$mapping_file"; then
159
159
exit 0
160
160
fi
161
161
162
- echo --- Copying images to other regions
162
+ echo " --- Copying images to other regions"
163
163
164
164
# Get the image names to copy to other regions
165
165
linux_amd64_source_image_name=$( get_image_name " $linux_amd64_source_image_id " " $source_region " )
0 commit comments