File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -71,14 +71,15 @@ tasks {
7171 patchPluginXml {
7272 version.set(properties(" pluginVersion" ))
7373 sinceBuild.set(properties(" pluginSinceBuild" ))
74- // untilBuild.set(properties("pluginUntilBuild"))
74+ untilBuild.set(properties(" pluginUntilBuild" ))
75+ changeNotes.set(file(" src/main/resources/META-INF/change-notes.html" ).readText().replace(" <html>" , " " ).replace(" </html>" , " " ));
7576
7677 // Get the latest available change notes from the changelog file
77- changeNotes.set(provider {
78- changelog.run {
79- getOrNull(properties(" pluginVersion" )) ? : getLatest()
80- }.toHTML()
81- })
78+ // changeNotes.set(provider {
79+ // changelog.run {
80+ // getOrNull(properties("pluginVersion")) ?: getLatest()
81+ // }.toHTML()
82+ // })
8283 }
8384
8485 // Configure UI tests plugin
@@ -97,7 +98,7 @@ tasks {
9798 }
9899
99100 publishPlugin {
100- dependsOn(" patchChangelog" )
101+ // dependsOn("patchChangelog")
101102 token.set(System .getenv(" PUBLISH_TOKEN" ))
102103 // pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
103104 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
You can’t perform that action at this time.
0 commit comments