We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f454da1 commit ccea3eaCopy full SHA for ccea3ea
.github/workflows/build-and-release-services-images.yml
@@ -104,8 +104,12 @@ jobs:
104
fi
105
amd64_found=$(echo "$manifest" | jq '.manifests[] | select(.platform.architecture == "amd64")')
106
arm64_found=$(echo "$manifest" | jq '.manifests[] | select(.platform.architecture == "arm64")')
107
- if [[ -z "$amd64_found" || -z "$arm64_found" ]]; then
108
- echo "Multi-platform support check failed for $IMAGE_NAME:$tag"
+ if [[ -z "$amd64_found" ]]; then
+ echo "Multi-platform support check failed for $IMAGE_NAME:$tag - missing amd64"
109
+ exit 1
110
+ fi
111
+ if [[ -z "$arm64_found" ]]; then
112
+ echo "Multi-platform support check failed for $IMAGE_NAME:$tag - missing arm64"
113
exit 1
114
115
done
0 commit comments