We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5db2b9 commit 8cf01d2Copy full SHA for 8cf01d2
1 file changed
BUILD.rst
@@ -0,0 +1,23 @@
1
+Creating releases
2
+=================
3
+
4
+1. Re-generate results available online if tests have changed:
5
6
+ rm -rf results log.html report.html output.xml
7
+ pybot --outputdir results QuickStart.rst
8
+ git checkout gh-pages
9
+ mv -f results/*.* .
10
+ rmdir results
11
+ git commit -m "Updated results available online"
12
+ git checkout master
13
+ git push
14
15
+2. Create tag:
16
17
+ VERSION=x.y
18
+ git tag -a -m "Release $VERSION" $VERSION
19
+ git push --tags
20
21
+3. Create release at https://github.com/robotframework/QuickStartGuide/releases
22
23
+4. Announce on Twitter, mailing lists, and elsewhere as needed.
0 commit comments