dev: add release target to Makefile

This commit is contained in:
Denis Isaev 2018-06-11 10:30:29 +03:00
parent 34fa0b0715
commit 2a8eec1f70
No known key found for this signature in database
GPG Key ID: A36A0EC8E27A1A01
2 changed files with 7 additions and 2 deletions

View File

@ -43,6 +43,7 @@ changelog:
exclude:
- '^docs:'
- '^test:'
- '^dev:'
- 'README'
- Merge pull request
- Merge branch

View File

@ -14,4 +14,8 @@ readme:
check_generated:
make readme && git diff --exit-code # check no changes
release:
rm -rf dist
curl -sL https://git.io/goreleaser | bash
.PHONY: test