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.
This commit is contained in:
scawful
2025-09-27 22:12:25 -04:00
parent 7d87c6bed8
commit 77b9f79755

View File

@@ -481,8 +481,8 @@ jobs:
# Package # Package
- name: Package - name: Package
shell: ${{ runner.os == 'Windows' && 'cmd' || 'bash' }}
run: ${{ matrix.package_cmd }} run: ${{ matrix.package_cmd }}
shell: bash
# Create release with artifacts (will create release if it doesn't exist) # Create release with artifacts (will create release if it doesn't exist)
- name: Upload to Release - name: Upload to Release