🔨 替换换行符.

This commit is contained in:
lijiahangmax
2025-12-21 15:55:21 +08:00
parent 1e74659f15
commit 5335a8d008

View File

@@ -189,7 +189,7 @@ function push_image_to_registry() {
# 推送版本
docker push "${namespace}/${image_name}:${version}"
# 推送 latest
if [ "latest_image" = true ]; then
if [ "$latest_image" = true ]; then
docker push "${namespace}/${image_name}:latest"
fi
done