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:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user