-
Notifications
You must be signed in to change notification settings - Fork 19
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.
- Update the
master
branch.
git checkout master
git pull
- 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
- 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")