From 696380412b26dfd2a96a7e965c597075ae9efaf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pekka=20Kl=C3=A4rck?= Date: Wed, 27 Jan 2016 13:00:19 +0200 Subject: [PATCH] Enhance release instructions --- BUILD.rst | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/BUILD.rst b/BUILD.rst index b4e245d..b94ad7c 100644 --- a/BUILD.rst +++ b/BUILD.rst @@ -1,23 +1,31 @@ Creating releases ================= -1. Re-generate results available online if tests have changed:: +1. Check that master is up-to-date:: + + git st + git pull + git push + +2. Re-generate results available online if tests have changed or logs/reports + have been enhanced:: rm -rf results log.html report.html output.xml + robot --version # Make sure latest version is used robot --outputdir results QuickStart.rst git checkout gh-pages mv -f results/*.* . rmdir results git commit -a -m "Updated results available online" - git checkout master git push + git checkout master -2. Create tag:: +3. Create tag:: VERSION=x.y # Set this!! git tag -a -m "Release $VERSION" $VERSION git push --tags -3. Create release at https://github.com/robotframework/QuickStartGuide/releases +4. Create release at https://github.com/robotframework/QuickStartGuide/releases -4. Announce on Twitter, mailing lists, and elsewhere as needed. +5. Announce on Twitter, mailing lists, and elsewhere as needed.