Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Fix package validation by enabling roll-forward so that the lack of .NET 6 on the Ubuntu 24.04 runners isn't an issue.
  • Loading branch information
martincostello committed Jan 21, 2025
1 parent 9f78bbe commit 164b910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
env:
DOTNET_VALIDATE_VERSION: ${{ needs.build.outputs.dotnet-validate-version }}
run: |
dotnet tool install --global dotnet-validate --version ${env:DOTNET_VALIDATE_VERSION}
dotnet tool install --global dotnet-validate --version ${env:DOTNET_VALIDATE_VERSION} --allow-roll-forward
$packages = Get-ChildItem -Filter "*.nupkg" | ForEach-Object { $_.FullName }
$invalidPackages = 0
foreach ($package in $packages) {
Expand Down

0 comments on commit 164b910

Please sign in to comment.