Versions Compared

Key

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

...

Code Block
RC_NUM=0
BRANCH_NAME=branch-3.6
WORK_BRANCH=release-3.6.0
RELEASE_DEVELOPMENT_VERSION=3.6.21-SNAPSHOT
RELEASE_VERSION=3.6.0
TAG=release-$RELEASE_VERSION-$RC_NUM

git checkout $BRANCH_NAME
git checkout -b $WORK_BRANCH
git pull
git push --dry-run
git status
# you are now in release-x.y.z branch

...

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-source-release.tar.gz
> put apache-zookkeper-$VERSION-source-release.tar.gz.asc
> put apache-zookkeper-$VERSION-source-release.tar.gz.sha512
> bye

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


Call for VOTE

...