Skip to content
Snippets Groups Projects
Makefile 179 B
Newer Older
Yoann Schneider's avatar
Yoann Schneider committed
.PHONY: release

release:
	$(eval version:=$(shell cat VERSION))
	echo $(version)
	git commit VERSION -m "Version $(version)"
	git tag $(version)
	git push origin main $(version)