From 922b129250676230276ea37f01424824faedc528 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:18:17 +0100 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aefd342..e305ec1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,11 @@ jobs: if: runner.os == 'macOS' run: brew install flex bison + - name: Checkout code + uses: actions/checkout@v3 + with: + submodules: recursive + # Windows - name: Install build tools (Windows) if: runner.os == 'Windows' @@ -31,11 +36,6 @@ jobs: cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ shell: pwsh - - name: Checkout code - uses: actions/checkout@v3 - with: - submodules: recursive - - name: Setup Python (needed for Conan) uses: actions/setup-python@v4 with: