From e7922e1976f3e92c9a892b36418654deda90c678 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 3 Feb 2026 04:58:35 +0000 Subject: [PATCH] fix(release): use bash shell for Windows build step PowerShell interprets '.' differently than bash. Adding shell: bash ensures consistent behavior across all platforms. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4789ab84..cf6409a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,7 @@ jobs: cache: true - name: Build CLI + shell: bash env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }}