Skip to content

Commit

Permalink
adjust default changelog value
Browse files Browse the repository at this point in the history
  • Loading branch information
janthoXO committed Jul 21, 2024
1 parent 34a9c96 commit 38eca55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,11 @@ jobs:
echo EOF
} >> $GITHUB_OUTPUT
- name: Patch Plugin XML
env:
PLUGIN_VERSION: ${{ github.event.release.tag_name }}
CHANGELOG: ${{ github.event.release.body }}
run: ./gradlew patchPluginXml

# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
env:
PLUGIN_VERSION: ${{ github.event.release.tag_name }}
# CHANGELOG: ${{ github.step.convert-markdown.outputs.html_output }}
CHANGELOG: ${{ github.event.release.body }}
CHANGELOG: ${{ github.step.convert-markdown.outputs.html_output }}
PUBLISH_TOKEN: ${{ secrets.PLUGIN_REPOSITORY_TOKEN }}
run: ./gradlew publishPlugin

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks {
environment("PLUGIN_VERSION").getOrElse("0.0.0")
)
changeNotes.set(
environment("CHANGELOG").getOrElse("")
environment("CHANGELOG").getOrElse("No changelog provided")
)
}

Expand Down

0 comments on commit 38eca55

Please sign in to comment.