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.
2 parents 73ba493 + 1ede655 commit 1b1a857Copy full SHA for 1b1a857
1 file changed
Makefile
@@ -6,6 +6,10 @@ ifeq ($(GO_ARCH), amd64)
6
GORELEASER_ARCH := $(TARGET_ARCH)_$(shell go env GOAMD64)
7
endif
8
9
+ifeq ($(GO_ARCH), arm64)
10
+GORELEASER_ARCH := $(TARGET_ARCH)_$(shell go env GOARM64)
11
+endif
12
+
13
GIT_SHORT_HASH := $(shell git rev-parse --short HEAD)
14
CURRENT_VERSION := $(shell git describe --tags --abbrev=0 | sed -n 's/v\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1.\2.\3/p')
15
NEXT_VERSION := $(shell echo $(CURRENT_VERSION) | awk -F '.' '{print $$1 "." $$2 "." $$3 +1}')-dev+$(GIT_SHORT_HASH)
0 commit comments