Skip to content

build

build #14

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install nuget dependencies
run: nuget restore Winditor.sln
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Build
run: msbuild Winditor.sln /t:Build /property:Configuration=Release
- name: Upload build
uses: actions/upload-artifact@v3
with:
name: Winditor
path: Editor\bin\x86\Release\*