File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 5151 CHANGELOG : ${{ github.event.release.body }}
5252 run : |
5353 RELEASE_NOTE="./build/tmp/release_note.txt"
54+ mkdir -p "$(dirname "$RELEASE_NOTE")"
5455 echo "$CHANGELOG" > $RELEASE_NOTE
55- ${{ github.event.release.body }}
56+
5657 ./gradlew patchChangelog --release-note-file=$RELEASE_NOTE
5758
5859 # Publish the plugin to JetBrains Marketplace
Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ dependencies {
5050 // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
5151 plugins(providers.gradleProperty(" platformPlugins" ).map { it.split(' ,' ) })
5252
53+ // Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
54+ bundledModules(providers.gradleProperty(" platformBundledModules" ).map { it.split(' ,' ) })
55+
5356 testFramework(TestFrameworkType .Platform )
5457 }
5558}
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ platformVersion = 2022.3
1818platformPlugins =
1919# Example: platformBundledPlugins = com.intellij.java
2020platformBundledPlugins =
21+ # Example: platformBundledModules = intellij.spellchecker
22+ platformBundledModules =
2123
2224# Gradle Releases -> https://github.com/gradle/gradle/releases
2325gradleVersion = 9.0.0
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ semver4j = "6.0.0"
99
1010# plugins
1111changelog = " 2.4.0"
12- intellijPlatform = " 2.7.0 "
12+ intellijPlatform = " 2.7.1 "
1313kotlin = " 2.2.0"
1414kover = " 0.9.1"
1515qodana = " 2025.1.1"
You can’t perform that action at this time.
0 commit comments