From edcddb3c5ed58643a2589e2c8b0ad0756f9d501f Mon Sep 17 00:00:00 2001 From: pointfeev Date: Mon, 9 Aug 2021 07:11:29 -0500 Subject: [PATCH] Update checks.yml --- .github/workflows/checks.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 7e7120b..a43338e 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -9,13 +9,9 @@ on: jobs: build: - + name: Build runs-on: windows-latest - env: - Solution_Name: CreamInstaller.sln - Test_Project_Path: CreamInstaller\CreamInstaller.csproj - steps: - name: Checkout uses: actions/checkout@v2 @@ -40,7 +36,7 @@ jobs: uses: microsoft/setup-msbuild@v1.0.2 - name: Restore Solution - run: msbuild $env:Solution_Name /t:Restore /p:Configuration=Release + run: msbuild CreamInstaller.sln /t:Restore /p:Configuration=Release - name: Build Solution - run: msbuild $env:Solution_Name /t:Build /p:Configuration=Release + run: msbuild CreamInstaller.sln /t:Build /p:Configuration=Release