Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找如何将字符串传递给詹金斯,以便在发送邮件时使用它。
所以假设我有一个里面有一个字符串的文件,我想在成功完成后发送电子邮件时读取该文件并在 jenkins 中使用它 - 这可能吗?
如果要寻找一个简单的字符串来传递,比如单行, 最简单的方法可能是使用Inject parameters Plugin - 它接受 INI 文件格式的文件,因此您可以编写如下内容:
MY_PARAM1=My Line to Show in the Email
然后你可以在你的邮件模板中使用 ${MY_PARAM1} 。