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

Makefile - github.com/jsnjack/hugo-changelog-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd6b57203f42a80770818236e198174c6cef6bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
change: init_githooks
	cd site/changelog && hugo new experimental/`shuf -i 10000-60000 -n 1`.md

deprecation: init_githooks
	cd site/changelog && hugo new deprecated/`shuf -i 10000-60000 -n 1`.md

release_create:
	python release.py

release: release_create
	git push
	git push --tags

generate_changelog:
	cd site/changelog && hugo

serve_changelog:
	cd site/changelog && hugo server --bind 0.0.0.0 --baseURL=http://localhost/changelog/

init_githooks:
	@git config core.hooksPath .githooks