Skip to content

Commit 6963804

Browse files
committed
Enhance release instructions
1 parent 807a5c4 commit 6963804

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

BUILD.rst

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
Creating releases
22
=================
33

4-
1. Re-generate results available online if tests have changed::
4+
1. Check that master is up-to-date::
5+
6+
git st
7+
git pull
8+
git push
9+
10+
2. Re-generate results available online if tests have changed or logs/reports
11+
have been enhanced::
512

613
rm -rf results log.html report.html output.xml
14+
robot --version # Make sure latest version is used
715
robot --outputdir results QuickStart.rst
816
git checkout gh-pages
917
mv -f results/*.* .
1018
rmdir results
1119
git commit -a -m "Updated results available online"
12-
git checkout master
1320
git push
21+
git checkout master
1422

15-
2. Create tag::
23+
3. Create tag::
1624

1725
VERSION=x.y # Set this!!
1826
git tag -a -m "Release $VERSION" $VERSION
1927
git push --tags
2028

21-
3. Create release at https://github.com/robotframework/QuickStartGuide/releases
29+
4. Create release at https://github.com/robotframework/QuickStartGuide/releases
2230

23-
4. Announce on Twitter, mailing lists, and elsewhere as needed.
31+
5. Announce on Twitter, mailing lists, and elsewhere as needed.

0 commit comments

Comments
 (0)