Skip to content

Commit 6583a88

Browse files
committed
GitHub: Fixed the missing $RELEASE_NOTE parent directory in the Release workflow
1 parent 2d95840 commit 6583a88

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
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

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)