Bump microsoft/setup-msbuild from 2 to 3 #284
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: commit build | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v3 | |
| with: | |
| msbuild-architecture: x64 | |
| - name: Setup NuGet | |
| uses: NuGet/setup-nuget@v2 | |
| - name: Install dependencies | |
| run: nuget restore client\client.sln | |
| - name: Build Release | |
| run: msbuild client\client.sln -property:Configuration=Release | |
| - name: Upload build | |
| uses: actions/upload-artifact@v6.0.0 | |
| with: | |
| name: specify_client_commit | |
| path: | | |
| client\bin\Release\specify_client.exe | |
| client\bin\Release\specify_client_noring0.exe |