From f79c3a575f0ef04793a402a6168c86a5599951b8 Mon Sep 17 00:00:00 2001 From: Aaron Villalpando Date: Sun, 11 Jan 2026 16:34:09 -0800 Subject: [PATCH 1/2] fix windows build --- .github/workflows/build-cli-release.reusable.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-cli-release.reusable.yaml b/.github/workflows/build-cli-release.reusable.yaml index 0dd6e6e048..1579b78d46 100644 --- a/.github/workflows/build-cli-release.reusable.yaml +++ b/.github/workflows/build-cli-release.reusable.yaml @@ -16,6 +16,7 @@ on: branches: - sam/mise-protoc-gen-go - aaron/fix-windows + - aaron/fix-windows-cli-build env: MACOSX_DEPLOYMENT_TARGET: "10.13" # Turbo remote caching @@ -72,6 +73,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Tools + if: matrix._.os != 'windows-2022' uses: ./.github/actions/setup-tools - name: Setup Rust From 700410810566254a8a3b7a386bc22c27c4911f20 Mon Sep 17 00:00:00 2001 From: Aaron Villalpando Date: Sun, 11 Jan 2026 16:34:43 -0800 Subject: [PATCH 2/2] fix build --- .github/workflows/build-cli-release.reusable.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-cli-release.reusable.yaml b/.github/workflows/build-cli-release.reusable.yaml index 1579b78d46..a7a8788cfb 100644 --- a/.github/workflows/build-cli-release.reusable.yaml +++ b/.github/workflows/build-cli-release.reusable.yaml @@ -72,6 +72,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 + # This sets up protoc-gen-go for non-Windows builds + # and on windows this seems to hang forever since 0.217.0 - name: Setup Tools if: matrix._.os != 'windows-2022' uses: ./.github/actions/setup-tools