Lowercase Docker image owner and name in workflow
Docker / docker (pull_request) Successful in 28s
Security / security (pull_request) Successful in 6s
CI / ci (push) Successful in 27s
CI / ci (pull_request) Successful in 26s
Enterprise AI Code Review / ai-review (pull_request) Successful in 17s

This commit is contained in:
2026-03-01 17:34:34 +01:00
parent d5c23ecccd
commit 8d46c9da14
+4
View File
@@ -150,6 +150,10 @@ jobs:
FINAL_NAME="$IMAGE_NAME_CFG"
fi
# Docker requires all image references to be lowercase
FINAL_OWNER="$(echo "$FINAL_OWNER" | tr '[:upper:]' '[:lower:]')"
FINAL_NAME="$(echo "$FINAL_NAME" | tr '[:upper:]' '[:lower:]')"
# Construct the full image reference (without tag)
IMAGE_REF="${REGISTRY_HOST}/${FINAL_OWNER}/${FINAL_NAME}"
echo "Image reference: ${IMAGE_REF}:<tag>"