Skip to content

Commit

Permalink
Try pinning Octokit to v6.0.0 in build.fsx (#2810)
Browse files Browse the repository at this point in the history
I think (/am guessing) that the error in the release build at https://github.com/fsprojects/FAKE/actions/runs/10605838278/job/29395428955#step:10:618 is because the Paket restore for build.fsx is restoring version 13 of Octokit, along side a release package of Fake.Api.GitHub which doesn't work with that version due to breaking API changes, and that's causing problems.

So - try pinning the Octokit nuget reference in build.fsx to 6.0.0 to match the released FAKE packages.
  • Loading branch information
Numpsy committed Aug 29, 2024
1 parent bdedfa6 commit 73dbe5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ nuget System.Reactive.Compatibility
nuget Suave
nuget Newtonsoft.Json
nuget System.Net.Http
nuget Octokit
nuget Octokit 6.0.0
nuget Microsoft.Deployment.DotNet.Releases //"

open System.Reflection
Expand Down

0 comments on commit 73dbe5b

Please sign in to comment.