From 23bedb999d7e363f2e124dd9ebac777b4f5e2db7 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 3 Feb 2026 05:00:57 +0000 Subject: [PATCH] fix(release): use bash shell for Windows build step (#274) 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 }}