From 13d4552edcd83b89b9cbc03fad2f482484c789f5 Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Thu, 13 Feb 2025 16:43:51 -0800 Subject: [PATCH] Add FreeBSD/amd64 to auto built releases (#51) --- .goreleaser.yaml | 6 +++++- Makefile | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index cdb1c67..51d1001 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -6,6 +6,10 @@ builds: goos: - linux - darwin + - freebsd goarch: - amd64 - - arm64 \ No newline at end of file + - arm64 + ignore: + - goos: freebsd + goarch: arm64 \ No newline at end of file diff --git a/Makefile b/Makefile index 1acb74c..ce16e27 100644 --- a/Makefile +++ b/Makefile @@ -60,4 +60,4 @@ release: git tag "$$new_tag"; # Phony targets -.PHONY: all clean osx linux +.PHONY: all clean mac linux