We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0aafbd commit d86f04dCopy full SHA for d86f04d
src/scripts/docker_buildx.sh
@@ -49,7 +49,7 @@ for tag in "${DOCKER_TAGS[@]}"; do
49
if [ "${docker_tag_exists_in_ecr}" = "true" ]; then
50
IFS="," read -ra PLATFORMS <<<"${AWS_ECR_EVAL_PLATFORM}"
51
for p in "${PLATFORMS[@]}"; do
52
- docker pull "${AWS_ECR_VAL_ACCOUNT_URL}/${AWS_ECR_EVAL_REPO}:${tag}" --platform "${p}"
+ docker pull "${AWS_ECR_VAL_ACCOUNT_URL}/${AWS_ECR_EVAL_REPO}:${tag}" --platform "${p}" || true
53
done
54
number_of_tags_in_ecr=$((number_of_tags_in_ecr += 1))
55
fi
0 commit comments