mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 06:11:52 +00:00
GitHub: Fixed the missing $RELEASE_NOTE parent directory in the Release workflow
This commit is contained in:
parent
2d9584084c
commit
6583a88033
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -51,9 +51,9 @@ jobs:
|
|||||||
CHANGELOG: ${{ github.event.release.body }}
|
CHANGELOG: ${{ github.event.release.body }}
|
||||||
run: |
|
run: |
|
||||||
RELEASE_NOTE="./build/tmp/release_note.txt"
|
RELEASE_NOTE="./build/tmp/release_note.txt"
|
||||||
|
mkdir -p "$(dirname "$RELEASE_NOTE")"
|
||||||
echo "$CHANGELOG" > $RELEASE_NOTE
|
echo "$CHANGELOG" > $RELEASE_NOTE
|
||||||
|
|
||||||
${{ github.event.release.body }}
|
|
||||||
./gradlew patchChangelog --release-note-file=$RELEASE_NOTE
|
./gradlew patchChangelog --release-note-file=$RELEASE_NOTE
|
||||||
|
|
||||||
# Publish the plugin to JetBrains Marketplace
|
# Publish the plugin to JetBrains Marketplace
|
||||||
|
|||||||
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Add `platformBundledModules` to `gradle.properties` along with `bundledModules()` helper to the Gradle build file
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- GitHub: Fixed the missing `$RELEASE_NOTE ` parent directory in the Release workflow
|
||||||
|
|
||||||
## [2.3.0] - 2025-08-09
|
## [2.3.0] - 2025-08-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@ -44,7 +44,7 @@ dependencies {
|
|||||||
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
|
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
|
||||||
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
|
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
|
||||||
|
|
||||||
// Module Dependencies. Use `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
|
// Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
|
||||||
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
|
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
|
||||||
|
|
||||||
testFramework(TestFrameworkType.Platform)
|
testFramework(TestFrameworkType.Platform)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user