diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b47ea4d --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +HOSTNAME=github.com +NAMESPACE=relaypro-open +NAME=dog_trainer +BINARY=${NAME} +VERSION=v1.0.4 +OS_ARCH=linux_amd64 + +default: install + +build: + rebar3 compile + +release: + rebar3 tar as public + +github_release: + git tag ${VERSION} + git push --tags --force + +delete_release: + git tag -d ${VERSION} + git push --delete origin ${VERSION}