From 53fe6924fb1393e2c7e9754a8462bd1251e2435c Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Thu, 18 Nov 2021 17:05:41 +0100 Subject: [PATCH] fix attachment extension --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 62366e4..bfedeb7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -84,7 +84,7 @@ pipeline { always { script { sh ''' - cp $WALKER_NOTES ./walker_notes.${PIPELINE_BUILD_NUMBER}.md + cp $WALKER_NOTES ./walker_notes.${PIPELINE_BUILD_NUMBER}.txt ''' } } @@ -93,7 +93,7 @@ pipeline { emailext to: 'jenkinsbuilds@d4science.org', subject: "[Jenkins WalkerPipeline D4S] build ${currentBuild.fullDisplayName} worked", body: "Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}" - emailext attachmentsPattern: "**/walker_notes.${PIPELINE_BUILD_NUMBER}.md", + emailext attachmentsPattern: "**/walker_notes.${PIPELINE_BUILD_NUMBER}.txt", to: 'jenkinsreleases@d4science.org', subject: "Dependency Report for gCube component ${inputProject} (build #${PIPELINE_BUILD_NUMBER})", body: "Downstream dependencies of ${inputProject}. See ${env.BUILD_URL}"