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:
scawful
2025-09-28 14:43:14 -04:00
parent 8f661eab18
commit 0d20065fd0

View File

@@ -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 }}..."