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