-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option for skip duplicate #97
Comments
Workaround in ubuntu:
|
Would this workaround work if multiple packages are being pushed? |
This would also be handy when |
That workaround is not a good idea, if your push fails you don't get to see that. It's the most crucial step of any package deployment, and you're throwing away the information on whether it succeeded or not. If your connection goes down and the package never makes it to the server, you won't know. |
This works on my end, will try to roll it into some of our pipelines to stress-test it. |
Currently with
dotnet nuget push
andnuget push
there is an option to skip duplicateWith
gpr push
, if duplicate package is found, there will be an error with non-zero exit code.This cause docker to fail and exit.
It would be nice if there is an option like
dotnet
andnuget
CLI to skip duplicate or make this as warning instead of an error with non-zero exit codee.g.
The text was updated successfully, but these errors were encountered: