From b52a400cdff2cd759e53d4787d624c53572d6e5e Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Tue, 11 Jul 2023 16:17:45 -0700 Subject: [PATCH] use `go build` on publish --- scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish.sh b/scripts/publish.sh index 31494151..12ac1d23 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -10,7 +10,7 @@ fi OS=$(go env GOOS) ARCH=$(go env GOARCH) -make app +go build . # Create a new tag if it doesn't exist. if ! git rev-parse v$VERSION >/dev/null 2>&1; then