Skip to content

♻️ Move PostRender stuff to its namespace #39

♻️ Move PostRender stuff to its namespace

♻️ Move PostRender stuff to its namespace #39

Workflow file for this run

name: MSBuild
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
SOLUTION_FILE_PATH: .
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: cp310
with:
python-version: '3.10'
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{ env.BUILD_CONFIGURATION }} /p:AdditionalLibPaths="${{ env.pythonLocation }}\libs`;" /p:IncludePath="$`(ProjectDir)\external\pybind11\include`;${{ env.pythonLocation }}\include`;$`(IncludePath)" ${{env.SOLUTION_FILE_PATH}}
- name: Upload Release Artifact
uses: actions/upload-artifact@v4
with:
name: Release
path: ${{env.SOLUTION_FILE_PATH}}/x64/Release
if-no-files-found: warn