fix: Replace Docker Hub with AliCloud ACR (#1278)

This commit is contained in:
Kent Dong
2024-09-03 19:31:58 +08:00
committed by GitHub
parent 55c0eb38d4
commit b7a30669a1
2 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ then
name=${file##*/}
echo "🚀 Build Rust WasmPlugin: $name"
PLUGIN_NAME=${name} make lint
PLUGIN_NAME=${name} BUILDER_REGISTRY="docker.io/alihigress/plugins-rust-" make build
PLUGIN_NAME=${name} make build
fi
done
else
@@ -69,7 +69,7 @@ else
version=$(cat "$version_file")
if [[ "$version" =~ -alpha$ ]]; then
echo "🚀 Build Go WasmPlugin: $name (version $version)"
PLUGIN_NAME=${name} BUILDER_REGISTRY="docker.io/alihigress/plugins-" make build
PLUGIN_NAME=${name} make build
else
echo "Plugin version $version not ends with '-alpha', skipping compilation for $name."
fi