Skip to content

Commit

Permalink
v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticmao committed Nov 10, 2021
1 parent 9f8c875 commit 8bf2525
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Expand Up @@ -9,7 +9,7 @@ GO_BUILD=CGO_ENABLED=0 go build -trimpath -ldflags \
-X "main.CommitHash=$(COMMIT_HASH)" \
-w -s'

PLATFORM_LIST=darwin-amd64 linux-amd64 linux-armv5 linux-armv6 linux-armv7 linux-armv8 windows-amd64
PLATFORM_LIST=darwin-amd64 darwin-arm64 linux-amd64 linux-armv5 linux-armv6 linux-armv7 linux-armv8 windows-amd64

default: build

Expand All @@ -24,6 +24,9 @@ build-all: $(PLATFORM_LIST)
darwin-amd64:
GOARCH=amd64 GOOS=darwin $(GO_BUILD) -o $(BIN_DIR)/$(NAME)-$@

darwin-arm64:
GOARCH=arm64 GOOS=darwin $(GO_BUILD) -o $(BIN_DIR)/$(NAME)-$@

linux-amd64:
GOARCH=amd64 GOOS=linux $(GO_BUILD) -o ./$(BIN_DIR)/$(NAME)-$@

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.0.0-SNAPSHOT
v1.0.0

0 comments on commit 8bf2525

Please sign in to comment.