DYN-9600 - Automatically synchronize the Documentation Browser to the currently selected node to reduce clicks, improve discoverability, and keep node help content aligned with user context. #4668
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 DynamoAll.sln | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build_and_analyze: | |
| name: Build and Analyze | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout Dynamo Repo | |
| uses: actions/checkout@v6 | |
| with: | |
| path: Dynamo | |
| repository: DynamoDS/Dynamo | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| global-json-file: Dynamo/global.json | |
| - name: Disable problem matcher | |
| run: Write-Output "::remove-matcher owner=csc::" | |
| - name: Setup msbuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Install dependencies for windows runtime | |
| run: dotnet restore ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln --runtime=win-x64 -p:Configuration=Release -p:DotNet=net10.0 | |
| - name: Build Dynamo with MSBuild for Windows | |
| run: msbuild ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release /warnAsError:RS0016,RS0017 /p:PublicApiAnalyzers=true | |
| - name: Look for DynamoCLI.exe | |
| run: | | |
| Write-Output "***Locating DynamoCLI.exe!***" | |
| if (Test-Path -Path "${{ github.workspace }}\Dynamo\bin\AnyCPU\Release\DynamoCLI.exe") { | |
| Write-Output "DynamoCLI.exe exists!" | |
| } else { | |
| Write-Output "::error title=File Not Found::DynamoCLI.exe was not found!" | |
| } | |
| - name: Check File Version | |
| run: ${{ github.workspace }}\Dynamo\.github\scripts\check_file_version.ps1 ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release | |
| - name: Upload Build Artifact | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: DynamoSandbox | |
| path: ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release | |
| if-no-files-found: warn | |
| retention-days: 3 | |
| save_pr_data: | |
| name: Save PR Data | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Save PR Data | |
| run: | | |
| mkdir -p ${{ github.workspace }}/pr | |
| echo ${{ github.event.number }} > ${{ github.workspace }}/pr/pr_number.txt | |
| - name: Upload PR Data | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: pr_data | |
| path: ${{ github.workspace }}/pr | |
| if-no-files-found: warn | |
| retention-days: 3 |