From 77b9f79755daf0a7668bb2a0252ce0c75ddf651d Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 27 Sep 2025 22:12:25 -0400 Subject: [PATCH] Update GitHub Actions workflow to standardize shell usage for packaging - Changed the shell used in the packaging step of the release workflow to always use bash, ensuring consistency across different 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 0030936d..abfaed85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -481,8 +481,8 @@ jobs: # Package - name: Package - shell: ${{ runner.os == 'Windows' && 'cmd' || 'bash' }} run: ${{ matrix.package_cmd }} + shell: bash # Create release with artifacts (will create release if it doesn't exist) - name: Upload to Release