Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

➜ mv {SOMEWHERE}/apache-pegasus-2.1.0-RC1incubating-source-releasesrc.zip ./2.1.0-RC1/ # Place the artifacts in the directory

Having only the source zip is not enough. We should prepare two other files:

  • apache-pegasus-2.1.0-RC1incubating-source-releasesrc.zip.asc:digital signature。Please read the guide in [Apache] GPG Key 配置 and follow the steps to generate signatures.
  • apache-pegasus-2.1.0-RC1incubating-source-releasesrc.zip.sha512:checksum.

Perform this command to generate a checksum file:

➜ sha512sum apache-pegasus-2.1.0-RC1incubating-source-releasesrc.zip > apache-pegasus-2.1.0-RC1incubating-source-releasesrc.zip.sha512

After all the above operations complete, there will be 3 files:

  • {SOURCE_RELEASE}.zip
  • {SOURCE_RELEASE}.zip.asc
  • {SOURCE_RELEASE}.zip.sha512

Deploy those files to the incubator's svn repo:

➜ svn add 2.1.0-RC1

➜ svn commit

...