Add missing OpenTK dlls #3
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: build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install nuget dependencies | |
| run: nuget restore SuperBMD.sln | |
| - name: Add msbuild to PATH | |
| uses: microsoft/[email protected] | |
| - name: Build | |
| run: msbuild SuperBMD.sln /t:Build /property:Configuration=Release | |
| - name: Upload build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: SuperBMD | |
| path: SuperBMD\bin\Release\* |