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

Makefile - github.com/progrhyme/hugo-theme-bootie-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f42d8063137237858ffa5e0a7e9c5d31a529b23 (plain)
1
2
3
4
5
6
7
8
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