Git action publishes on GitHub packages, but not possible to publish on nuget.org #11104
-
Hi there, As you can see, the action is able to publish the package to GitHub packages but when it tries to publish on nuget.org it says the package is already existing. If I search the package on NuGet I haven't any results. I can't find the problem. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @sonomirco, not all ID prefix reservations are discoverable on the search results. Today, there is no way to enumerate all of the namespaces that are reserved. In this particular case, However, I would recommend considering a less generic prefix than "Pipeline". One common pattern is putting your organization or commonly used username at the beginning of the package ID. For example, Microsoft package start with "Microsoft". My own personal packages start with "Knapcode" which is the name I use my coding projects 😃. It gives me leeway to have relatively generic words as the second part of the package ID/namespace and avoid conflicts or ambiguity with other package authors. |
Beta Was this translation helpful? Give feedback.
Hey @sonomirco, not all ID prefix reservations are discoverable on the search results. Today, there is no way to enumerate all of the namespaces that are reserved. In this particular case,
Pipeline.*
is reserved. If you would like to go through the application process for getting access to this namespace or some part of it, feel free to go through the application process documented here:https://docs.microsoft.com/en-us/nuget/nuget-org/id-prefix-reservation#id-prefix-reservation-application-process
However, I would recommend considering a less generic prefix than "Pipeline". One common pattern is putting your organization or commonly used username at the beginning of the package ID. For e…