I’m running Continua 1.6.0.305. I have an IF action that checks if $Build.StartedBy$ equals “Daily Build”. “Daily Build” is the name of the trigger that starts the build. This used to work in version 1.5, but does not in the current version. The build log just says “skipped” for the action status.
I’m passing $Build.StartedBy$ as a variable to the FinalBuild script that Continua calls later on and I’m logging it in FB. It looks to have the right value, so I’m not sure why the condition is not evaluating correctly in Continua.
Hi Miruna,
We added extra properties to the $Build.StartedBy$. If you change the left hand side of the condition to $Build.StartedBy.Username$, then this wil match your trigger name. $Build.StartedBy$ on it’s own does default to the username, but there is a bug in the type comparision code here. We will get this fixed for the next version.
Thanks, Dave!