You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2015/12/21 20:09:31 UTC

[Hadoop Wiki] Update of "Chukwa_How_To_Release" by EricYang

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The "Chukwa_How_To_Release" page has been changed by EricYang:
https://wiki.apache.org/hadoop/Chukwa_How_To_Release?action=diff&rev1=2&rev2=3

  == Website Navigation Deployment Procedure ==
  
  {{{
- svn co https://svn.apache.org/repos/asf/incubator/chukwa/site
+ svn co https://svn.apache.org/repos/asf/chukwa/site
  mvn site-deploy
  }}}
  
  == Per Release Deployment Procedure ==
  
  {{{
- svn copy https://svn.apache.org/repos/asf/incubator/chukwa/branches/branch-x.y https://svn.apache.org/repos/asf/incubator/chukwa/tags/chukwa-x.y.z -m "Tag Release x.y.z"
- svn co https://svn.apache.org/repos/asf/incubator/chukwa/tags/chukwa-x.y.z
+ git tag -a chukwa-x.y.z -m "Tag Release x.y.z"
+ git pull origin
+ git push origin
  mvn clean deploy site-deploy
  }}}
  
  Update release number in site navigation:
  
  {{{
- svn co https://svn.apache.org/repos/asf/incubator/chukwa/site
+ svn co https://svn.apache.org/repos/asf/chukwa/site
  vi site/src/site/site.xml
  svn ci -m "Update Site navigation for Release x.y.z"
  mvn site-deploy