Skip to content

Commit ef4cb1f

Browse files
authored
Update CONTRIBUTING.md
1 parent f4ff15a commit ef4cb1f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

CONTRIBUTING.md

+23
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,26 @@ Then to finish the process:
3131
* Add automated build for the new tag on [Docker Hub](https://hub.docker.com/r/cachethq/docker/builds/)
3232

3333
Periodically back-port changes from most recent minor version branch to `master`.
34+
35+
## Multiple releases
36+
37+
Sometimes we get a little behind the upstream Cachet project, and need to make a few releases at once.
38+
39+
```
40+
gsed s/v2.3.7/v2.3.8/g -i Dockerfile
41+
git commit -am "Cachet v2.3.8 release"
42+
git tag -a v2.3.8 -m "Cachet Release v2.3.8"
43+
git push origin v2.3.8
44+
45+
gsed s/v2.3.8/v2.3.9/g -i Dockerfile
46+
git commit -am "Cachet v2.3.9 release"
47+
git tag -a v2.3.9 -m "Cachet Release v2.3.9"
48+
git push origin v2.3.9
49+
50+
gsed s/v2.3.9/v2.3.10/g -i Dockerfile
51+
git commit -am "Cachet v2.3.10 release"
52+
git tag -a v2.3.10 -m "Cachet Release v2.3.10"
53+
git push origin v2.3.10
54+
```
55+
56+
Then setup releases on GitHub.

0 commit comments

Comments
 (0)