-
Notifications
You must be signed in to change notification settings - Fork 19
Tagging a new Docker release
Adam Stallard edited this page Sep 30, 2020
·
7 revisions
Steps 1-4 are done on your local machine with a key for pushing to origin:master
on GitHub.
- Update the
master
branch.
git checkout master
git pull
- Merge the latest changes to release files into the
docker
branch.
git checkout docker
git pull
git checkout master docker-compose.yml config.env web_services/brightid-nginx.conf
git commit -m "Describe what was changed"
git push
- Delete the old
docker
tag.
git tag -d docker
git push origin :refs/tags/docker
- Create a new
docker
tag.
git tag docker
git push origin --tags
Step 5 is done on the GitHub website.
- Publish the release.
- Go to https://github.com/BrightID/BrightID-Node/releases
- Edit the release. (Click "Edit")
- Publish the release. (Click "Publish release")