From 0d20065fd00db5b850084931e9f104e54e0b9e7b Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 28 Sep 2025 14:43:14 -0400 Subject: [PATCH] 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. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e41b028..b3e00ce4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}..."