Skip to content

Commit 6ae4c6e

Browse files
authored
Merge pull request #296 from arangodb/bug-fix/repeair-changelog-generator
Try to repair changelog generator.
2 parents 1c3ea60 + 68108fd commit 6ae4c6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ changelog:
350350
docker run --rm \
351351
-e CHANGELOG_GITHUB_TOKEN=$(shell cat ~/.arangodb/github-token) \
352352
-v "$(ROOTDIR)":/usr/local/src/your-app \
353-
ferrarimarco/github-changelog-generator \
353+
ferrarimarco/github-changelog-generator:1.14.3 \
354354
--user arangodb \
355355
--project kube-arangodb \
356356
--no-author

tools/release/release.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ func main() {
7878
createSHA256Sums()
7979
gitCommitAll(fmt.Sprintf("Updated manifest to %s", version)) // Commit manifest
8080
gitTag(version)
81-
//make("changelog", nil)
82-
//gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md
81+
make("changelog", nil)
82+
gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md
8383
githubCreateRelease(version)
8484
bumpVersion("devel")
8585
}

0 commit comments

Comments
 (0)