I have a deployment automation that has a name like "Release v1.14.30". I'm trying to create a fix version that ends up like this:
momentum:1.14.30
The smart value is this: {{"momentum:".concat(deployment.name.substringAfter('Release v'))}}
However, I am getting this error:
You cannot use a literal value (e.g., "momentum") as the starting value in the expression.
Please try storing that literal in a created variable first, and then use that to create your new version name.
Or...build the entire thing in the variable in one step for use later:
momentum:{{deployment.name.substringAfter('Release v')}}
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.