This commit adds new tasks to the release pipeline, generating release notes automatically using the issues in the current milestone and pushing that as the content of the GitHub release. Closes gh-25922
13 lines
331 B
Bash
Executable File
13 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
CONFIG_DIR=git-repo/ci/config
|
|
version=$( cat version/version )
|
|
|
|
java -jar /github-changelog-generator.jar \
|
|
--spring.config.location=${CONFIG_DIR}/changelog-generator.yml \
|
|
${version} generated-changelog/changelog.md
|
|
|
|
echo ${version} > generated-changelog/version
|
|
echo v${version} > generated-changelog/tag
|