Browse Source

Create the tag as well

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/175/head
Joas Schilling 9 years ago
parent
commit
f4fd6b7790
No known key found for this signature in database GPG Key ID: E166FD8976B3BAC8
  1. 6
      Makefile

6
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)

Loading…
Cancel
Save