You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
331 B
13 lines
331 B
4 years ago
|
#!/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
|