@@ -151,7 +151,6 @@ jobs:
151151 type=ref,event=branch
152152 type=semver,pattern={{version}}
153153 type=semver,pattern=v{{version}}
154- # type=semver,pattern={{major}}.{{minor}}
155154 type=semver,pattern=release-{{raw}}
156155 type=sha
157156 type=raw,value=${{ github.event.inputs.tag }}
@@ -173,8 +172,8 @@ jobs:
173172 # Read each tag and append --tag arguments
174173 while IFS= read -r tag; do
175174 tag_args+=(--tag "${{ secrets.DOCKER_USERNAME }}/$IMAGE_NAME:$tag")
176- tag_args+=(--tag "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$tag")
177- tag_args+=(--tag "registry.cn-hangzhou.aliyuncs.com/openimsdk/$IMAGE_NAME:$tag")
175+ # tag_args+=(--tag "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$tag")
176+ # tag_args+=(--tag "registry.cn-hangzhou.aliyuncs.com/openimsdk/$IMAGE_NAME:$tag")
178177 done <<< "${{ steps.meta.outputs.tags }}"
179178
180179 # Build and push the Docker image with all tags
@@ -199,6 +198,7 @@ jobs:
199198 exit 1
200199 fi
201200 arm64_found=$(echo "$manifest" | jq '.manifests[] | select(.platform.architecture == "arm64")')
201+ echo "arm64_found is: $arm64_found"
202202 if [[ -z "$arm64_found" ]]; then
203203 echo "Multi-platform support check failed for $IMAGE_NAME:$tag - missing arm64"
204204 exit 1
0 commit comments