add step to post action

This commit is contained in:
Roberto Cirillo 2023-10-06 14:32:42 +02:00
parent c7aabd99a9
commit a9c7b7b4cf
1 changed files with 5 additions and 1 deletions

View File

@ -46,7 +46,11 @@ pipeline {
post {
success {
echo 'The pipeline worked!'
def pjob = build(job: 'is-registry-service-image', wait: false, propagate: false);
steps {
script {
build(job: 'is-registry-service-image', wait: false, propagate: false);
}
}
}
}