Skip to content

Tagging a new Docker release

Mohsen Khan-mohammad-zadeh edited this page Aug 14, 2022 · 7 revisions

Steps 1-4 are done on your local machine with a key for pushing to origin:master on GitHub.

  1. Update the master branch.
git checkout master
git pull
  1. Merge the latest changes to release files into the docker branch.
git checkout --track origin/docker
git checkout master docker-compose.yml config.env web/brightid-nginx.conf web/index.html
git commit -m "Describe what was changed"
git push
  1. Delete the old docker tag.
git tag -d docker
git push origin :refs/tags/docker
  1. Create a new docker tag.
git tag docker
git push origin --tags

Step 5 is done on the GitHub website.

  1. Publish the release.
    1. Go to https://github.com/BrightID/BrightID-Node/releases
    2. Edit the release. (Click "Edit")
    3. Publish the release. (Click "Publish release")