From 4b4b1fa777ae23449bf4075c62f0962e489e6652 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Fri, 15 Aug 2025 19:22:26 +0100 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 22b238e..69e9ac4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,21 @@ jobs: runs-on: ${{ matrix.os }} steps: + # Linux + - name: Install build tools (Linux) + if: runner.os == 'Linux' + run: sudo apt-get update && sudo apt-get install -y flex bison + + # macOS + - name: Install build tools (macOS) + if: runner.os == 'macOS' + run: brew install flex bison + + # Windows + - name: Install build tools (Windows) + if: runner.os == 'Windows' + run: choco install winflexbison -y + shell: pwsh - name: Checkout code uses: actions/checkout@v3 with: