Standardize shell usage in GitHub Actions release workflow to always use bash for packaging step, ensuring consistency across environments.
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user