试图让詹金斯将自述文件作为附件包含在管道中
stage('email Alex!'){
mail(
body: 'your component is released',
attachmentsPattern: '**/*.md',
from: env.DEFAULT_REPLYTO,
replyTo: env.DEFAULT_REPLYTO,
subject: 'README',
to: 'alexander.lovett@bt.com'
)
}
在这个测试中,目录结构是:
--currentDir
|--Project
|--README.md
我只是收到一封带有正文的电子邮件,但没有附件:/有人知道该怎么做吗?