Once a published nuget package that is in release candidate (e.g 4.5.0-RC) status, has passed all the verification tests, we would like to change it's version to a release one like v.4.5.0 without rebuilding it from the source code.
The RC version of it, has been created like this:
dotnet publish -c Release -o out --no-restoredotnet pack --configuration Release --no-build --output nupkgs \p:PackageVersion=4.5.0-RCdotnet nuget push nupkgs/org.package_one.4.5.0-RC.nupkg --api-key xxx --source "github"
So, is there any way to
- pull it
- change the version and the tag
- push it to the remote registry