From a388a3f78b5f5adf5916eea61f33b20ea2ca4a22 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Thu, 27 Jan 2022 21:17:32 -0800 Subject: [PATCH] Add linux-arm64 builds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9dc8159..9cd7b98 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ OUTPUT = slack-status GOFILES = *.go go.mod go.sum -DIST_ARCH = darwin-amd64 darwin-arm64 linux-amd64 +DIST_ARCH = darwin-amd64 darwin-arm64 linux-amd64 linux-arm64 DIST_TARGETS = $(addprefix dist/$(OUTPUT)-,$(DIST_ARCH)) VERSION ?= $(shell git describe --tags --dirty)