From 8aaa7706cabbfe0ed188b8e445386a91d0b7898a Mon Sep 17 00:00:00 2001 From: Timothee 'TTimo' Besset Date: Sun, 25 Apr 2021 16:23:45 -0500 Subject: [PATCH] or like this --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4838f43..cc5845f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,8 +32,11 @@ jobs: - name: Setup GtkRadiant run: scons target=setup + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.0.2 + - name: Build GtkRadiant - run: & "${Env:ProgramFiles(X86)}\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" /p:Configuration=Release /p:Platform=Win32 /target:radiant + run: msbuild /p:Configuration=Release /p:Platform=Win32 /target:radiant - name: Build q3map2 x64 - run: & "${Env:ProgramFiles(X86)}\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" /p:Configuration=Release /p:Platform=x64 /target:q3map2 \ No newline at end of file + run: msbuild /p:Configuration=Release /p:Platform=x64 /target:q3map2 \ No newline at end of file