This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch devel-camel-20383 in repository https://gitbox.apache.org/repos/asf/camel.git
commit c0d85042489074e395215ff0b585e2d4032c2f6b Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Apr 8 13:35:11 2024 +0200 Added missing steps --- Jenkinsfile.matrix.platform | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile.matrix.platform b/Jenkinsfile.matrix.platform index 09f7e124e77..de8d3e4a7c1 100644 --- a/Jenkinsfile.matrix.platform +++ b/Jenkinsfile.matrix.platform @@ -152,13 +152,15 @@ pipeline { } } stage('Email') { - post { - always { - emailext( - subject: '${DEFAULT_SUBJECT}', - body: '${DEFAULT_CONTENT}', - recipientProviders: [[$class: 'DevelopersRecipientProvider']] - ) + steps { + post { + always { + emailext( + subject: '${DEFAULT_SUBJECT}', + body: '${DEFAULT_CONTENT}', + recipientProviders: [[$class: 'DevelopersRecipientProvider']] + ) + } } } }
