diff --git a/Jenkinsfile b/Jenkinsfile index 4f20e1d..3ce150c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,10 +11,15 @@ pipeline { echo "flag: ${params.userFlag}" } } + post { + always { + echo "this is always printed at the end of this stage" + } + } } post { always { - echo "this is always printed" + echo "this is always printed at the end" } } }