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

pull/204/head
Jakub Chrzanowski 3 years ago committed by Jakub Chrzanowski
parent b4518ca7ff
commit ec6688c2b3

@ -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

@ -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`

Loading…
Cancel
Save