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