Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 38eca55

Browse files
committed
adjust default changelog value
1 parent 34a9c96 commit 38eca55

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/release.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,11 @@ jobs:
5050
echo EOF
5151
} >> $GITHUB_OUTPUT
5252
53-
- name: Patch Plugin XML
54-
env:
55-
PLUGIN_VERSION: ${{ github.event.release.tag_name }}
56-
CHANGELOG: ${{ github.event.release.body }}
57-
run: ./gradlew patchPluginXml
58-
5953
# Publish the plugin to JetBrains Marketplace
6054
- name: Publish Plugin
6155
env:
6256
PLUGIN_VERSION: ${{ github.event.release.tag_name }}
63-
# CHANGELOG: ${{ github.step.convert-markdown.outputs.html_output }}
64-
CHANGELOG: ${{ github.event.release.body }}
57+
CHANGELOG: ${{ github.step.convert-markdown.outputs.html_output }}
6558
PUBLISH_TOKEN: ${{ secrets.PLUGIN_REPOSITORY_TOKEN }}
6659
run: ./gradlew publishPlugin
6760

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tasks {
6161
environment("PLUGIN_VERSION").getOrElse("0.0.0")
6262
)
6363
changeNotes.set(
64-
environment("CHANGELOG").getOrElse("")
64+
environment("CHANGELOG").getOrElse("No changelog provided")
6565
)
6666
}
6767

0 commit comments

Comments
 (0)