1
0
Fork 0

chore: setup git-cliff

This commit is contained in:
Henrik Hautakoski 2025-10-28 07:43:17 +01:00
parent e5c86a1528
commit fd15ed0b11
2 changed files with 93 additions and 0 deletions

View file

@ -5,3 +5,10 @@ GOFLAGS = -trimpath -ldflags="-s -w"
tetris :
$(GO) build $(GOFLAGS) tetris.go
release : NEXT_VER = $(shell git-cliff --bumped-version)
release :
git-cliff --bump -o CHANGELOG.md
git add CHANGELOG.md
git commit -m "chore(version): Bump to $(NEXT_VER)"
git tag $(NEXT_VER)