pushing to nuget says it already exists but it doesnt
I have this yml github action that pushed the nuget package, but when it runs it fails because
But I can see in the actions tab it only ran once, and when I go on nuget it did in fact work




8 Replies
Theres the --skip-duplicate parameter, but I dont want to use it since it should not be duplicate?
Looks like it exists to me? https://www.nuget.org/packages/AsyncEnumerableSource#versions-body-tab
AsyncEnumerableSource 1.0.1
A high-performance, thread-safe async enumerable source.
Yeah but only because it was successful
Ah sorry, I misread the question
You can see it was created 25 mins ago and the CD pipeline ran 26 mins ago
so it worked
but it says it didnt 😦
Are you possibly double publishing in CI somehow? I don't think so from the yml but I'd check the logs and see if there was a successful publish and then a failed one
The CI pipeline does not pack or push the nuget package, and I cannot see any duplicates in the CD pipeline or the logs of its run 🤔
I downloaded the logs and I see it actually says success but it failed to push
in csproj dont work as I expected
.symbols.nupkg
Turns out these:
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>in csproj dont work as I expected
the first command should publish symbols as well https://learn.microsoft.com/en-us/nuget/create-packages/symbol-packages-snupkg#publishing-a-symbol-package
How to publish NuGet symbol packages using the new symbol package f...
How to create NuGet symbol packages (snupkg).