Dinesh Kannan Rajaram
05/15/2024, 12:59 PMbeforeDeploy
, afterDeploy
and deploy
. deploy
dependsOn(beforeDeploy
) and finalizedBy(afterDeploy
). Both beforeDeploy
and afterDeploy
is of the same TaskClass just the status
input will differ.
Is it possible to set the input status
of afterDeploy
based on the execution status of the deploy
task . For ex, if deploy
task fails then afterDeploy
task's status
needs to be configured with "failed"
. I don't know how to get this working or if this is even possible.
TIA 🙏Vampire
05/15/2024, 2:05 PMdeploy
task and read the value in the afterDeploy
task.Dinesh Kannan Rajaram
05/21/2024, 7:41 AM