From 54863df074a14e35d536adbb50da168d7b43b36c Mon Sep 17 00:00:00 2001 From: Nishant Totla Date: Thu, 5 May 2016 16:59:17 -0700 Subject: [PATCH] Updating Release checklist Signed-off-by: Nishant Totla --- RELEASE-CHECKLIST.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/RELEASE-CHECKLIST.md b/RELEASE-CHECKLIST.md index 4083cd6127..ac211ec31e 100644 --- a/RELEASE-CHECKLIST.md +++ b/RELEASE-CHECKLIST.md @@ -13,15 +13,18 @@ git push $GITHUBUSER bump- Open PR on docker/swarm. Merge the PR before moving to next step. -### 2. Rebase release branch on top of master branch and tag +### 2. Rebase release branch on top of updated master branch and tag ``` +git checkout master +git pull origin git checkout release git rebase master git push origin git tag git push origin ``` +The tag must be of the form `v1.2.1-rc1`. ### 3. Update library image @@ -37,7 +40,7 @@ Build and update Swarm image. cd swarm-library-image git pull ./update.sh (example: ./update.sh v0.2.0-rc2) -check build is successful (swarm binary should show in git diff) +check build is successful (swarm binaries should show in git diff) git add . git commit -s -m “" git push origin