Standardize shell usage in GitHub Actions release workflow to always use bash for packaging step, ensuring consistency across environments.

This commit is contained in:
scawful
2025-09-27 22:51:48 -04:00
parent 1515c452ea
commit bca75ac660

View File

@@ -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)