Files
charts/make/git.makefile
ducoterra 5ccfcf6b5a Add make git-release
Add git-release command that will add everything not currently staged,
create a commit, and tag it with the current version.
2021-11-01 21:41:30 -04:00

6 lines
124 B
Makefile

.PHONY git-release
git-release:
@git add .
@git commit -m "Automated release for version $(VERSION)"
@git tag $(VERSION)