mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-03-02 03:39:24 +00:00
GitHub Actions: update Build and Release flows
This commit is contained in:
committed by
Jakub Chrzanowski
parent
1a5e465697
commit
b7785a3c26
@@ -11,7 +11,7 @@ plugins {
|
||||
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
|
||||
id("org.jetbrains.intellij") version "1.1.4"
|
||||
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
|
||||
id("org.jetbrains.changelog") version "1.2.1"
|
||||
id("org.jetbrains.changelog") version "1.3.0"
|
||||
}
|
||||
|
||||
group = properties("pluginGroup")
|
||||
@@ -77,7 +77,11 @@ tasks {
|
||||
)
|
||||
|
||||
// Get the latest available change notes from the changelog file
|
||||
changeNotes.set(provider { changelog.getLatest().toHTML() })
|
||||
changeNotes.set(provider {
|
||||
changelog.run {
|
||||
getOrNull(properties("pluginVersion")) ?: getLatest()
|
||||
}.toHTML()
|
||||
})
|
||||
}
|
||||
|
||||
runPluginVerifier {
|
||||
|
||||
Reference in New Issue
Block a user