Skip to content

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.

  1. Pull down latest changes from master
  2. # VERSION=3.5.3-<element> make generate_all
  3. Mass replace in directory the old version, with the new
  4. # git commit -am "3.5.3-<element> release"
  5. # git tag 3.5.3-<element> git push --tags
  6. # git push origin master && git push --tags
  • <element> can be explained better here.
Clone this wiki locally