diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..d035b82 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,28 @@ +name: Windows + +on: + push: + branches: + - master + +jobs: + + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v1 + name: Checkout Code + + - name: Setup MSBuild Path + uses: warrenbuckley/Setup-MSBuild@v1 + + - name: Setup NuGet + uses: NuGet/setup-nuget@v1.0.2 + + - name: Restore NuGet Packages + run: nuget restore EmpathicQbt.ConsoleServer.sln + + - name: Build and Publish Web App + run: msbuild EmpathicQbt.ConsoleServer.sln /p:Configuration=Release