Skip to content

fix: Urgent hotfix for adding chunks #91

fix: Urgent hotfix for adding chunks

fix: Urgent hotfix for adding chunks #91

Workflow file for this run

name: WolvenKit-Check-Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout github repo
uses: actions/checkout@v2
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
- name: Restore packages
run: dotnet restore --packages .nuget --runtime win-x64
- name: Build exe
run: msbuild WolvenKit/WolvenKit.csproj -p:Configuration=Release -p:Platform=x64 -m -p:Runtimeidentifier=win-x64 -verbosity:minimal
- name: Build cli
run: msbuild WolvenKit.CLI/WolvenKit.CLI.csproj -p:Configuration=Release -p:Platform=x64 -m -p:Runtimeidentifier=win-x64 -verbosity:minimal