From 027ed99f5809be4f4e271e03a24af6686caf05d7 Mon Sep 17 00:00:00 2001 From: Drew Gulino <1379399+dgulinobw@users.noreply.github.com> Date: Fri, 23 Feb 2024 16:57:55 -0500 Subject: [PATCH] makefile --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile 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}