mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-15 00:04:07 +01:00
18 lines
346 B
Makefile
18 lines
346 B
Makefile
.PHONY: changelog release
|
|
|
|
SEMTAG=tools/semtag
|
|
|
|
CHANGELOG_FILE=CHANGELOG.md
|
|
TAG_QUERY=v11.0.0..
|
|
|
|
scope ?= "minor"
|
|
|
|
changelog-unrelease:
|
|
git-chglog --no-case -o $(CHANGELOG_FILE) $(TAG_QUERY)
|
|
|
|
changelog:
|
|
git-chglog --no-case -o $(CHANGELOG_FILE) --next-tag `$(SEMTAG) final -s $(scope) -o -f` $(TAG_QUERY)
|
|
|
|
release:
|
|
$(SEMTAG) final -s $(scope)
|