GHA
This commit is contained in:
parent
83a8806b91
commit
401ecb1330
1 changed files with 28 additions and 0 deletions
28
.github/workflows/windows.yml
vendored
Normal file
28
.github/workflows/windows.yml
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue