Skip to content

feat: Instant Regen #21

feat: Instant Regen

feat: Instant Regen #21

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
env:
SOLUTION_FILE_PATH: ./SoloLevelling.sln
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build
run: |
msbuild /m /p:Configuration=${{ env.BUILD_CONFIGURATION }} ${{ env.SOLUTION_FILE_PATH }}
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: build-artifact
path: ./bin/Release-x64/*
if-no-files-found: error