Skip to content

Commit

Permalink
makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dgulinobw committed Feb 23, 2024
1 parent 0743bc3 commit 027ed99
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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}

0 comments on commit 027ed99

Please sign in to comment.