File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-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
5556
56- ${{ github.event.release.body }}
5757 ./gradlew patchChangelog --release-note-file=$RELEASE_NOTE
5858
5959 # Publish the plugin to JetBrains Marketplace
Original file line number Diff line number Diff line change 44
55## [ Unreleased]
66
7+ ### Added
8+
9+ - Add ` platformBundledModules ` to ` gradle.properties ` along with ` bundledModules() ` helper to the Gradle build file
10+
11+ ### Fixed
12+
13+ - GitHub: Fixed the missing ` $RELEASE_NOTE ` parent directory in the Release workflow
14+
715## [ 2.3.0] - 2025-08-09
816
917### Added
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ dependencies {
4444 // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
4545 plugins(providers.gradleProperty(" platformPlugins" ).map { it.split(' ,' ) })
4646
47- // Module Dependencies. Use `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
47+ // Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
4848 bundledModules(providers.gradleProperty(" platformBundledModules" ).map { it.split(' ,' ) })
4949
5050 testFramework(TestFrameworkType .Platform )
You can’t perform that action at this time.
0 commit comments