zcsizmadia commented on pull request #1536: URL: https://github.com/apache/avro/pull/1536#issuecomment-1044498494
Here is the script to update point 9) at https://cwiki.apache.org/confluence/display/AVRO/How+To+Release#HowToRelease-Publishing. I assumed that the directory structure built by `build.sh dist` is used. Is there another place this can be automated, or the release prorcess is done manually step by step? ``` mkdir -p tmp/csharp cd tmp/csharp tar xvfz ../../dist/csharp/avro-csharp-X.Y.Z.tar.gz dotnet nuget push main/Apache.Avro.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json dotnet nuget push codegen/Apache.Avro.Tools.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json dotnet nuget push codec/Avro.File.Snappy/Apache.File.Snappy.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json dotnet nuget push codec/Avro.File.BZip2/Apache.File.BZip2.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json dotnet nuget push codec/Avro.File.XZ/Apache.File.XZ.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json dotnet nuget push codec/Avro.File.Zstandard/Apache.File.Zstandard.X.Y.Z.nupkg -k YOUR_KEY -s https://api.nuget.org/v3/index.json ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
