Fix initial state of the mannequin in Wood Side Apartments Room 205 #471
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| UseMultiToolTask: true | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: [Workflow] | |
| platform: [Win32] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: microsoft/setup-msbuild@v1 | |
| - uses: Trass3r/setup-cpp@master | |
| - name: Build | |
| run: msbuild /m /p:Configuration=${{ matrix.config }} /p:Platform=${{ matrix.platform }} sh2-enhce.sln | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.config }} binaries | |
| path: | | |
| bin/${{ matrix.config }}/* |