Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/progrhyme/hugo-theme-bootie-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkey-amb <yasutake.kiyoshi@gmail.com>2016-05-04 19:41:44 +0300
committerkey-amb <yasutake.kiyoshi@gmail.com>2016-05-04 19:41:44 +0300
commit540f27bf92f7d10f3003ed0001784f7ca6ca58d3 (patch)
tree3c4a496c36eda6b54a78f9bc08b2094ae82b3ab3
parent5f1582b9a7faf468b3391fa35d2aa87753e86bd5 (diff)
Add make release task
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2f42d80
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+.PHONY: release
+
+VERSION := $(shell cat VERSION.txt)
+
+release:
+ git commit -m $(VERSION)
+ git tag -a v$(VERSION) -m $(VERSION)
+ git push origin v$(VERSION)
+ git push origin master