Hi
I am using jenkins job builder to create my jenkins job. In my YAML configuration, I have the following config at the bottom on my job to have a post-build-task. This is the same config that is given
here
publishers:
- post-tasks:
- matches:
- log-text: line to match
operator: AND
- log-text: line to match
operator: OR
- log-text: line to match
operator: AND
escalate-status: false
run-if-job-successful: false
script: |
echo "Here goes the task script"
However, I don't see a post build task in my jenkins job when I create it using this config. Has anyone tried using this feature?
Thanks
Harsh