29 lines
534 B
YAML
29 lines
534 B
YAML
|
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
|