Update dependency Microsoft.Web.WebView2 to 1.0.4078.44 #238
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| # Allow manually triggering | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-2025-vs2026 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # Git Versioning requires a non-shallow clone | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.x' | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v3 | |
| - name: Build | |
| run: msbuild -property:Configuration=Release -property:Platform=x64 -bl:logs/msbuild.binlog | |
| - name: Upload logs | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: logs | |
| path: ./logs | |
| if: ${{ always() }} # Always run this step even on failure | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: artifacts | |
| path: ./artifacts | |
| if: ${{ always() }} # Always run this step even on failure |