Ajout Makefile + script de génération de release

This commit is contained in:
2019-11-21 15:20:12 +01:00
parent 895f8d2f34
commit 97c2cfeef6
4 changed files with 118 additions and 3 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
build: pack
CGO_ENABLED=0 go build -mod vendor -v -o bin/junit2md ./cmd/junit2md
pack:
packr2
watch:
modd
release: pack
script/release
.PHONY: build pack watch release