-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Release Process
Diego Molina edited this page Apr 22, 2018
·
12 revisions
Here are the simple steps to release a new set of docker-selenium images.
Before you start releasing, ensure that in the TravisCI configuration for the docker-selenium repository, the LATEST variable is set to the current major.minor version. E.g., if you are releasing tag 3.8.1-aluminum, the variable should be set to 3.8.1, this will enable TravisCI to push the latest
tag of the docker image.
- Pull down latest changes from master
# VERSION=3.5.3-<element> make generate_all
- Mass replace in directory the old version, with the new
# git commit -am "3.5.3-<element> release"
# git tag 3.5.3-<element> git push --tags
# git push origin master && git push --tags
-
<element>
can be explained better here.