diff --git a/JenkinsFile b/JenkinsFile index 2e5b2d1..9efb689 100644 --- a/JenkinsFile +++ b/JenkinsFile @@ -42,4 +42,12 @@ pipeline { } } } -} \ No newline at end of file + // post-build actions + post { + success { + echo 'The pipeline worked!' + def pjob = build(job: 'is-registry-service-image', wait: false, propagate: false); + } + + } +}