mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 02:15:12 +00:00
chore: add make release target (#130)
Signed-off-by: Derek Smith <derek@clokwork.net>
This commit is contained in:
parent
2f5b47b0f7
commit
b02996e027
2 changed files with 26 additions and 3 deletions
7
Makefile
7
Makefile
|
|
@ -28,3 +28,10 @@ changelog: build
|
|||
.PHONY: lint
|
||||
lint:
|
||||
@golangci-lint run
|
||||
|
||||
.PHONY: release
|
||||
release: changelog
|
||||
@git add CHANGELOG.md
|
||||
@git commit -m "chore: update changelog for $(VERSION)"
|
||||
git tag $(VERSION)
|
||||
git push origin master $(VERSION)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue