Merge remote-tracking branch 'origin/master' into se-fix #96
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: Master Builds | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Nuget.exe | |
| uses: NuGet/setup-nuget@v1.0.5 | |
| - name: Setup MSBuild.exe | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Restore | |
| working-directory: . | |
| run: nuget restore | |
| - name: MSBuild | |
| working-directory: . | |
| run: msbuild /t:Build /p:Configuration=Release BepInEx.Debug.sln | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: BepInEx.Debug | |
| path: bin |