Versions Compared

Key

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

...

Code Block
# Staged artifacts built by "release:perform" are in target/checkout

cd target/checkout/zookeeper-assembly/target

sftp home.apache.org
cd public_html
mkdir zookeeper-$VERSION-candidate-0
cd zookeeper-$VERSION-candidate-0
put *-bin.tar.gz
put *-bin.tar.gz.asc
put *-bin.tar.gz.sha512
lcd ../../target

# pwd should be target/checkout/target
put apache-zookkeper-$VERSION*.tar.gz
put apache-zookkeper-$VERSION*.tar.gz.asc
put apache-zookkeper-$VERSION*.tar.gz.sha512

# uplading website (sftp needs directory tree to be pre-created?)
lcd ../zookeeper-docs/target/html
mkdir website
mkdir website/images
mkdir website/skin
cd website
put -r * 

...