From 6578fd1313134b8c6608b244ebb3483373f3135c Mon Sep 17 00:00:00 2001 From: Trevor Brown Date: Wed, 4 Jun 2025 20:42:34 -0400 Subject: [PATCH] chore: enable windows binaries --- .github/workflows/release-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index b02642790..6fb6dd5c5 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -16,13 +16,13 @@ jobs: matrix: # windows isn't working on windows right now, add it to this list once # I fix the code. - goos: [linux, darwin] + goos: [linux, darwin, windows] goarch: ["386", amd64, arm64] exclude: - goarch: "386" goos: darwin - #- goarch: arm64 - # goos: windows + - goarch: arm64 + goos: windows steps: - name: Checkout uses: actions/checkout@v4