We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db8c1d commit 64c6491Copy full SHA for 64c6491
makefile
@@ -3,7 +3,7 @@
3
GOLANG := golang:1.15
4
GOOS := darwin
5
6
-VERSION := 1.1.1
+VERSION := 1.1.2
7
GIT_HASH = $(shell git rev-parse --short HEAD)
8
LDFLAGS := "-X github.com/dherbst/septa.GitHash=${GIT_HASH} -X github.com/dherbst/septa.Version=${VERSION}"
9
@@ -53,3 +53,7 @@ install-local:
53
54
image: build
55
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