What's so special about the Nuget Publish runner?
I've got this odd issue. If I create a Nuget Publish runner and point it at the internal TC nuget feed it publishes fine. However if I create a Command Line runner and call nuget.exe with the api key and the internal TC feed url as the source I get prompted for credentials. I've examined the Nuget Publish runner in the build output log and it seems to pretty much do what I've done manually in the command line runner. So what is it that makes Nuget Publish runner work? Are there some context parameters that it's picking up because it's a built in plugin?
Please sign in to leave a comment.
Hi Imran,
The Nuget Publish runner handles the required interactions. Is there any specific reason for you to try avoiding all of the methods of publishing and try to do it manually?
Hey Denis
It's because my build runs on a Linux agent and the nuget publiser runner doesn't work on that agent. I managed to just pass the credentials across and it works fine now. I had suspected the nuget publisher runner must handle the authentication automatically.
Best wishes