From cc50054b72e673012cb67f787fb7669a03f53d95 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Fri, 28 Jul 2023 19:47:41 +0200 Subject: [PATCH] GH: Fix linux mono templates fail to build --- .github/workflows/linux.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d3c3b51..e50138c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -141,13 +141,13 @@ jobs: # .NET glue - name: Generate C# glue - if: ${{ matrix.build-mono }} + if: ${{ matrix.build-mono }} && ${{ matrix.target }} == 'editor' run: | ${{ matrix.bin }} --headless --generate-mono-glue ./modules/mono/glue || true # .NET solutions - name: Build .NET solutions - if: ${{ matrix.build-mono }} + if: ${{ matrix.build-mono }} && ${{ matrix.target }} == 'editor' run: | ./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=linuxbsd @@ -157,3 +157,4 @@ jobs: name: ${{matrix.bin}} path: bin/* +