Skip to content

Commit

Permalink
fix: check image from registry
Browse files Browse the repository at this point in the history
Signed-off-by: zwwhdls <weiwei.zhu@juicefs.io>
  • Loading branch information
zwwhdls committed Jun 13, 2024
1 parent 2d68171 commit 640eb40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sync_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
fi
TAG_TO_SYNC = "ce-${JUICEFS_CE_LATEST_VERSION}"
docker pull juicedata/mount:ce-${JUICEFS_CE_LATEST_VERSION}
docker pull registry.cn-hangzhou.aliyuncs.com/juicefs/mount:ce-${JUICEFS_CE_LATEST_VERSION}
rst=$?
if [ $rst -eq 0 ]; then
echo "ce mount image exist"
Expand All @@ -83,7 +83,7 @@ jobs:
fi
TAG_TO_SYNC = "ee-$JUICEFS_EE_LATEST_VERSION"
docker pull juicedata/mount:ee-$JUICEFS_EE_LATEST_VERSION
docker pull registry.cn-hangzhou.aliyuncs.com/juicefs/mount:ee-$JUICEFS_EE_LATEST_VERSION
rst=$?
if [ $rst -eq 0 ]; then
echo "ee mount image exist"
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
fi
TAG_TO_SYNC = "${JUICEFS_CSI_LATEST_VERSION}"
docker pull juicedata/juicefs-csi-driver:${JUICEFS_CSI_LATEST_VERSION}
docker pull registry.cn-hangzhou.aliyuncs.com/juicefs/juicefs-csi-driver:${JUICEFS_CSI_LATEST_VERSION}
rst=$?
if [ $rst -eq 0 ]; then
echo "csi image exist"
Expand Down

0 comments on commit 640eb40

Please sign in to comment.