Skip to content

Added a WIP skinchanger #22

Added a WIP skinchanger

Added a WIP skinchanger #22

Workflow file for this run

name: MSBuild
on: [push, pull_request]
jobs:
msbuild:
runs-on: windows-latest
strategy:
matrix:
configuration: [Release, ReleaseAVX2]
steps:
- uses: actions/[email protected]
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet packages
working-directory: ${{ github.workspace }}
run: nuget restore
- name: Build
working-directory: ${{ github.workspace }}
run: msbuild Amalgam.sln /p:Platform=x64 /p:Configuration=${{ matrix.configuration }}
- uses: actions/[email protected]
with:
name: Amalgam${{ matrix.configuration }}
path: output/${{ matrix.configuration }}/*.dll