From 826100abacf214ef6f80e9665c9be8d4323b7a7f Mon Sep 17 00:00:00 2001 From: Nahshon Unna-Tsameret Date: Mon, 14 Feb 2022 14:55:49 +0200 Subject: [PATCH] prepare binaries for release Signed-off-by: Nahshon Unna-Tsameret --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f8eb894..5ecb6df 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,10 @@ build-ui: yarn build --dest ../site build-backend: test - env GOOS=linux GOARCH=arm go build -o piHatDraw-arm . - env GOOS=linux GOARCH=arm64 go build -o piHatDraw-arm64 . + env GOOS=linux GOARCH=arm go build -o piHatDraw . + tar -czvf piHatDraw-arm.tar.gz piHatDraw + env GOOS=linux GOARCH=arm64 go build -o piHatDraw . + tar -czvf piHatDraw-arm64.tar.gz piHatDraw build: build-ui build-backend