From 5e84d57f914d839fe6ce768d937e918dd7e6407a Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Thu, 28 Nov 2024 12:25:26 +0100 Subject: [PATCH] Update Jenkinsfile change email address to jenkinsbuilds@d4science.org --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 24e56ab..bff852b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,7 +82,7 @@ pipeline { //URL to the YAML file. Used alternatively to RELEASE_JOB RELEASE_URL= "${params.RELEASE_URL}" // username of ReleaseManager. Used for limiting the preproduction deployments - RELEASE_MANAGER_USER='roberto.cirillo' + RELEASE_MANAGER_USER='giancarlo.panichi' // name of Smartgears distribution group, defined in the yaml file ( only for release deployments) DISTRIBUTION_CATEGORY='Distribution' // name of Portlets group, defined in the yaml file ( only for release deployments) @@ -267,14 +267,14 @@ pipeline { echo 'The deploy pipeline worked!' emailext attachLog: true,//attachmentsPattern: "**/${ACTION_DEPLOY_FILE}.csv", - to: 'roberto.cirillo@isti.cnr.it', + to: 'jenkinsbuilds@d4science.org', subject: "[Jenkins-gCubeDeployer] Deploy report", body: "${currentBuild.fullDisplayName}. Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}. " } failure { echo 'The deploy pipeline has failed' emailext attachLog: true, - to: 'roberto.cirillo@isti.cnr.it', + to: 'jenkinsbuilds@d4science.org', subject: "[Jenkins-gCubeDeployer] deploy ${currentBuild.fullDisplayName} failed", body: "Something is wrong with ${env.BUILD_URL}" }