Skip to content

Build editor exe

Build editor exe #29

Workflow file for this run

name: Build
run-name: Build editor exe
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- run: dotnet restore
- run: dotnet publish -c Release -r win-x64 --no-self-contained
- run: ls -R
- uses: actions/upload-artifact@v3
with:
name: Build
path: bin\Release\net6.0-windows\win-x64\publish