Browse Source
Create the tag as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/175/head
Joas Schilling
9 years ago
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with
6 additions and
0 deletions
-
Makefile
|
|
|
@ -13,6 +13,12 @@ version+=master |
|
|
|
|
|
|
|
all: appstore |
|
|
|
|
|
|
|
release: appstore create-tag |
|
|
|
|
|
|
|
create-tag: |
|
|
|
git tag -a v$(version) -m "Tagging the $(version) release." |
|
|
|
git push origin v$(version) |
|
|
|
|
|
|
|
clean: |
|
|
|
echo $(version) |
|
|
|
rm -rf $(build_dir) |
|
|
|
|