Skip to content

Commit bc036e7

Browse files
committed
123
1 parent f97ced5 commit bc036e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-release-services-images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)