You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
290 B
Bash
12 lines
290 B
Bash
4 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
version=$( cat version/version )
|
||
|
|
||
|
java -jar /github-changelog-generator.jar \
|
||
|
--changelog.repository=spring-projects/spring-boot \
|
||
4 years ago
|
${version} generated-changelog/changelog.md
|
||
4 years ago
|
|
||
|
echo ${version} > generated-changelog/version
|
||
|
echo v${version} > generated-changelog/tag
|