Sanitize the image name when attempting docker image creation at the CI pipeline
ci-templates/default.yml should be affected
ci-templates/default.yml should be affected
added typeenhancement label
assigned to @dimit.giannopoulos
added to epic osl&5 (closed)
mentioned in merge request !40 (merged)
closed
ci-templates/default.yml contains this code
# Convert to lowercase
export APP_VERSION=$(echo "$APP_VERSION" | tr 'A-Z' 'a-z')
This forces lowercasing in docker images of the RC branch (e.g. 2024q4_rc), or the release branch (e.g. 2024q4) which is not intended.
Need to remove the lowercasing enforcement.