Fixed passing updated change notes from the Release Draft to patchChangelog Gradle task

This commit is contained in:
Jakub Chrzanowski 2021-10-13 23:21:44 +02:00 committed by Jakub Chrzanowski
parent b4518ca7ff
commit ec6688c2b3
2 changed files with 4 additions and 2 deletions

View File

@ -31,9 +31,10 @@ jobs:
# Update Unreleased section with the current release note
- name: Patch Changelog
run: |
./gradlew patchChangelog --release-note="`cat << EOM
./gradlew patchChangelog --release-note "$(cat << 'EOM'
${{ github.event.release.body }}
EOM`"
EOM
)"
# Publish the plugin to the Marketplace
- name: Publish Plugin

View File

@ -16,6 +16,7 @@
### Fixed
- Fixed passing change notes from `CHANGELOG.md` to the Release Draft
- Fixed passing updated change notes from the Release Draft to `patchChangelog` Gradle task
### Removed
- Removed the `pluginVerifierIdeVersions` configuration to use default IDEs list provided by the `listProductsReleases` task for `runPluginVerifier`