From 7b94c36c78963083a1e7e9f286a0bc88995176f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 02:05:16 +0000 Subject: [PATCH 2/3] Fix Linux build by adding shell: bash to Package binaries step Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com> --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0ffba0dbe..241c5d5d1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -49,6 +49,7 @@ jobs: run: cmake --build build --parallel - name: Package binaries + shell: bash run: | cd build/bin From e9342d3107586a35babddb45ad0d83c0e9545ab1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 02:14:23 +0000 Subject: [PATCH 3/3] Add shell: bash to all run steps in build-linux job for consistency Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com> --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 241c5d5d1..5ac143b35 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,6 +22,7 @@ jobs: submodules: recursive - name: Mark workspace safe + shell: bash run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Setup ccache @@ -30,11 +31,13 @@ jobs: key: ${{ runner.os }}-release-ccache-${{ hashFiles('.github/workflows/release.yaml') }} - name: Install dependencies + shell: bash run: | apt-get update -qq DEBIAN_FRONTEND=noninteractive apt-get install -y -qq build-essential ninja-build ccache uuid-dev - name: Configure + shell: bash run: | cmake -S . -B build -G Ninja \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ @@ -46,6 +49,7 @@ jobs: -DEQEMU_BUILD_CLIENT_FILES=ON - name: Build + shell: bash run: cmake --build build --parallel - name: Package binaries