zip = "name_of_zip_file_to_use"
createZipFile = [src:"./test", destination:"./${zip}.zip"]
如果对引用变量和/或字符串连接感兴趣,请参阅文档或类似的StackOverflow主题:
groovy中的变量插补:和网站 https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#string-interpolation and http://docs.groovy-lang.org/latest/html/documentation/#_string_interpolation
1条答案
按热度按时间pw136qt21#
使用
${VARIABLE_NAME}
语法可以引用和插入变量。因此,在您的情况下,它将看起来:如果对引用变量和/或字符串连接感兴趣,请参阅文档或类似的StackOverflow主题: