We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672922b commit 7632220Copy full SHA for 7632220
ci/release/Jenkinsfile
@@ -148,8 +148,10 @@ pipeline {
148
env.RELEASE_VERSION = releaseVersion.toString()
149
env.DEVELOPMENT_VERSION = developmentVersion.toString()
150
151
-// def matchingFiles = findFiles(glob: "/release_notes.md")
152
-// env.SCRIPT_OPTIONS = " --notes=${matchingFiles[0]}"
+ def notesFile = new File( "release_notes.md" )
+ assert notesFile.exists
153
+ env.SCRIPT_OPTIONS = " --notes=${notesFile.absolutePath}"
154
+
155
if ( params.RELEASE_DRY_RUN ) {
156
env.SCRIPT_OPTIONS += " -d"
157
}
0 commit comments