Add release target to generate compiled version archive

This commit is contained in:
2019-03-27 18:50:35 +01:00
parent 8c6c0e12b2
commit c7d4215be8
8 changed files with 130 additions and 8 deletions

View File

@ -29,11 +29,14 @@ install-devtools: vendor
GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
clean:
rm -rf ./bin
rm -rf ./bin ./release
go clean -i -x -r -modcache
doc:
@echo "Open your browser to http://localhost:6060/pkg/forge.cadoles.com/Pyxis/orion/ to see the documentation"
@godoc -http=:6060
.PHONY: test clean generate vendor install-devtools lint watch tidy doc
release:
scripts/release
.PHONY: test clean generate vendor install-devtools lint watch tidy doc release