brandedoutcast / publish-nuget

📦 GitHub action to automate publishing NuGet packages when project version changes
https://github.com/marketplace/actions/publish-nuget
MIT License
197 stars 101 forks source link

[BUG] --skip-duplicates doesn't work #37

Closed koeneijkemans closed 4 years ago

koeneijkemans commented 4 years ago

I just wanted to inform you that the --skip-duplicates flag that is supplied to the dotnet nuget push command is not working at the moment.

I think the reason this isn't working is because of a bug in the --no-symbols flag. This flag expects a parameter to be supplied and thus takes the --skip-duplicates as parameter. You can work around this issue by just passing something else as paramter to the --no-symbols flag. (ie --no-symbols 1 --skip-duplicates).

See https://github.com/NuGet/Home/issues/4864