?
Hi Simon,
The variable matching isn't taking place because you're using the simple syntax (see "notation" under Variables Documentation). Specifically, BuildMaster is looking for a varaible named "DeployableName_", which doesn't exist, and thus it is replaced as a literal.
So, either change to "$DeployableName-$BuildNumber" or "${DeployableName}_${BuildNumber}".
Alana