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 {
71
71
patchPluginXml {
72
72
version.set(properties(" pluginVersion" ))
73
73
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>" , " " ));
75
76
76
77
// 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
+ // })
82
83
}
83
84
84
85
// Configure UI tests plugin
@@ -97,7 +98,7 @@ tasks {
97
98
}
98
99
99
100
publishPlugin {
100
- dependsOn(" patchChangelog" )
101
+ // dependsOn("patchChangelog")
101
102
token.set(System .getenv(" PUBLISH_TOKEN" ))
102
103
// pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
103
104
// 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