Skip to content
Snippets Groups Projects
Commit 052abfb2 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Add make release command

parent 28133c3f
No related branches found
No related tags found
No related merge requests found
.PHONY: release
release:
$(eval version:=$(shell cat VERSION))
echo $(version)
git commit VERSION -m "Version $(version)"
git tag $(version)
git push origin master $(version)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment