Update dotnet-reportgenerator-globaltool reference to 5.5.10 #964
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-ignore: | |
| - "dependabot/**" # Will still build PRs, but not the branches themself | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ | |
| windows-latest, | |
| ubuntu-22.04, | |
| # Cake.Recipe currently does not support macOS 14 (M1) due to usage of Cake.Git. | |
| macos-13] | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - name: Fetch all branches and tags | |
| run: git fetch --unshallow --prune | |
| - name: Tools caching | |
| uses: actions/cache@v4.3.0 | |
| with: | |
| path: tools | |
| key: ${{ matrix.os }}-tools-${{ hashFiles('recipe.cake', 'Source/Cake.Recipe/Content/addins.cake', 'Source/Cake.Recipe/Content/tools.cake', 'Source/Cake.Recipe/Content/modules.cake') }} | |
| - name: Creating includes.cake file | |
| run: | | |
| Get-ChildItem "./Source/Cake.Recipe/Content/*.cake" -Exclude "version.cake" | % { | |
| "#load `"local:?path=$($_.FullName -replace '\\','/')`"" | |
| } | Out-File "./includes.cake" | |
| shell: pwsh | |
| # Ubuntu 24.04 does not have Mono installed, which is Required for Cake.Recipe | |
| - name: Install Mono | |
| if: ${{ matrix.os == 'ubuntu-24.04' }} | |
| run: sudo apt-get install mono-complete | |
| - name: Build Cake.Recipe | |
| uses: cake-build/cake-action@v3.0.1 | |
| with: | |
| script-path: recipe.cake | |
| target: CI | |
| cake-version: 3.2.0 | |
| cake-bootstrap: true |