Docker builds are failing if tags contain slash characters (/). Tag names are generated from the git branch name, so it is not that uncommon to see / on the latest (i.e. git-flow pattern: feat/xxx, fix/xxx...).
This PR applies a simple sed command that replaces all / by _ on the branch name value used for generating the Docker image tag name.
Docker builds are failing if tags contain slash characters (
/
). Tag names are generated from the git branch name, so it is not that uncommon to see/
on the latest (i.e. git-flow pattern:feat/xxx
,fix/xxx
...).This PR applies a simple
sed
command that replaces all/
by_
on the branch name value used for generating the Docker image tag name.