From 54f0bf80708e26d072555f3b812f24873d866bc9 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Mon, 30 Aug 2021 14:44:58 -0400 Subject: [PATCH] Update msbuild.yml --- .github/workflows/msbuild.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 7c1aadc3..809369a0 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -4,7 +4,7 @@ on: [push] env: # Path to the solution file relative to the root of the project. - SOLUTION_FILE_PATH: Nuake/Nuake.sln + SOLUTION_FILE_PATH: Nuake.sln # Configuration type to build. # You can convert this to a build matrix if you need coverage of multiple configuration types. @@ -18,8 +18,11 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Change directory + run: cd Nuake + - name: Premake - run: Nuake/premake5.exe vs2019 + run: premake5.exe vs2019 - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v1.0.2