diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a780787d..0f647a4e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,4 +39,6 @@ jobs: - name: Run Premake for Visual Studio run: C:\tools\premake5.exe vs2019 - name: Compile Project with MSBuild - run: msbuild sigma.sln /p:Configuration=Debug /p:Platform="x64" + run: | + $msbuildPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" + & $msbuildPath sigma.sln /p:Configuration=Debug /p:Platform="x64"