From bca75ac6605a336ab6b32a75958fedbc6486961a Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 27 Sep 2025 22:51:48 -0400 Subject: [PATCH] Standardize shell usage in GitHub Actions release workflow to always use bash for packaging step, ensuring consistency across environments. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf688742..afc233fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -575,7 +575,7 @@ jobs: # Package - name: Package - shell: ${{ runner.os == 'Windows' && 'cmd' || 'bash' }} + shell: bash run: ${{ matrix.package_cmd }} # Create release with artifacts (will create release if it doesn't exist)