From f4f63734c2049bac7ea33022c80c3d101b4d9e99 Mon Sep 17 00:00:00 2001 From: Richard Fox Date: Fri, 15 Dec 2023 03:01:28 -0800 Subject: [PATCH] fix(ci): run restore in correct directory --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37731d2d..65267ef4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,8 +16,6 @@ jobs: build: runs-on: windows-latest defaults: - run: - working-directory: ./CSCore steps: - uses: actions/checkout@v4 - name: Setup MSBuild @@ -27,7 +25,8 @@ jobs: with: nuget-api-key: ${{ secrets.NUGET_TOKEN }} - name: Restore Nuget - run: nuget restore CSCore.csproj + run: nuget restore CSCore.sln - name: Build Solution run: | + cd ./CSCore msbuild.exe CSCore.csproj /nologo