add trigger action

This commit is contained in:
Roberto Cirillo 2023-10-06 14:27:28 +02:00
parent 80da2e9598
commit c7aabd99a9
1 changed files with 9 additions and 1 deletions

View File

@ -42,4 +42,12 @@ pipeline {
}
}
}
}
// post-build actions
post {
success {
echo 'The pipeline worked!'
def pjob = build(job: 'is-registry-service-image', wait: false, propagate: false);
}
}
}