From ae63ab5d64c574c92fb88ea9ae008733c8feae0a Mon Sep 17 00:00:00 2001 From: Ryan Moran Date: Fri, 6 Mar 2026 21:37:39 -0800 Subject: [PATCH] Updates release workflow --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d40ffa..a791fae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,11 +17,14 @@ jobs: uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: - go-version: "1.25.4" + go-version-file: go.mod - name: Build binary + env: + GOOS: darwin + GOARCH: arm64 run: | go build -o contagent -ldflags="-s -w" . chmod +x contagent