Skip to content

Commit 64c6491

Browse files
committed
Added release target
1 parent 3db8c1d commit 64c6491

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
GOLANG := golang:1.15
44
GOOS := darwin
55

6-
VERSION := 1.1.1
6+
VERSION := 1.1.2
77
GIT_HASH = $(shell git rev-parse --short HEAD)
88
LDFLAGS := "-X github.com/dherbst/septa.GitHash=${GIT_HASH} -X github.com/dherbst/septa.Version=${VERSION}"
99

@@ -53,3 +53,7 @@ install-local:
5353

5454
image: build
5555
docker build -t septa:latest .
56+
57+
# gh-release creates a new release in github and uploads the built binary.
58+
gh-release:
59+
gh release create ${VERSION} 'bin/septa'

0 commit comments

Comments
 (0)