Bump actions/upload-artifact from 4.6.0 to 4.6.2 #259
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: commit build | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| 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: Build Release - NoRing0 build | |
| run: msbuild client\client.sln -property:Configuration=ReleaseNoRing0 | |
| - name: Upload build | |
| uses: actions/upload-artifact@v4.6.2 | |
| with: | |
| name: specify_client_commit | |
| path: | | |
| client\bin\Release\specify_client.exe | |
| client\bin\Release\specify_client_noring0.exe |