Files
the-cycle/.github/workflows/build.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 13: mapping values are not allowed in this context

27 lines
638 B
YAML

name: Build
on: [push]
jobs:
builds:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup MSBUILD
uses: microsoft/setup-msbuild@v1.0.3
- name: Restore NuGet
run: dotnet restore ./src/
- name: Build Prospect.Agent
run: msbuild /m /p:Configuration=Release ./src/Prospect.Agent/Prospect.Agent.vcxproj
- name: Build Prospect.Launcher
run: dotnet publish -o ./build-app -r win-x64 -c Release -v minimal ./src/Prospect.Launcher/Prospect.Launcher.csproj