1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Merge pull request #296 from arangodb/bug-fix/repeair-changelog-generator

Try to repair changelog generator.
This commit is contained in:
Max Neunhöffer 2018-11-06 11:23:07 +01:00 committed by GitHub
commit 6ae4c6eea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -350,7 +350,7 @@ changelog:
docker run --rm \
-e CHANGELOG_GITHUB_TOKEN=$(shell cat ~/.arangodb/github-token) \
-v "$(ROOTDIR)":/usr/local/src/your-app \
ferrarimarco/github-changelog-generator \
ferrarimarco/github-changelog-generator:1.14.3 \
--user arangodb \
--project kube-arangodb \
--no-author

View file

@ -78,8 +78,8 @@ func main() {
createSHA256Sums()
gitCommitAll(fmt.Sprintf("Updated manifest to %s", version)) // Commit manifest
gitTag(version)
//make("changelog", nil)
//gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md
make("changelog", nil)
gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md
githubCreateRelease(version)
bumpVersion("devel")
}