Update release workflow to specify shell for build and packaging steps
- Added 'bash' as the shell for the Build and Package steps in the release workflow to ensure consistent execution environment. - This change enhances compatibility and reliability during the CI process.
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -258,6 +258,7 @@ jobs:
|
||||
|
||||
# Build
|
||||
- name: Build
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Building YAZE for ${{ matrix.name }}..."
|
||||
cmake --build build --config ${{ env.BUILD_TYPE }} --parallel
|
||||
@@ -317,6 +318,7 @@ jobs:
|
||||
|
||||
# Package
|
||||
- name: Package
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Packaging for ${{ matrix.name }}..."
|
||||
|
||||
|
||||
Reference in New Issue
Block a user