Add release NuGet publish from CI#199
Conversation
sergey-tihon
left a comment
There was a problem hiding this comment.
I am not an expert in GitHub Actions. I think it is easier to run it and check that it works as expected.
There was a problem hiding this comment.
Can it be simplified as github.event.inputs.release != 'true' ?
There was a problem hiding this comment.
Yes, it can! Thanks
There was a problem hiding this comment.
this call will execute all FAKE targets from the beginning and probably fail on CINuGet because we do not provide GITHUB_TOKEN.
You may want to merge "NuGet" ==> "PublishNuget" into one FAKE target and then execute with --signle-targe param, like dotnet fake run build.fsx -t "PublishNuget" --single-target
There was a problem hiding this comment.
I think that CINuGet only prepares the package while PublishCINuGet requires the GITHUB_TOKEN. From what I see Release does not depend on PublishCINuGet. We will see in a moment :)
There was a problem hiding this comment.
I ddin't know about --single-target - noted.

No description provided.