File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -31,3 +31,26 @@ Then to finish the process:
31
31
* Add automated build for the new tag on [ Docker Hub] ( https://hub.docker.com/r/cachethq/docker/builds/ )
32
32
33
33
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.
You can’t perform that action at this time.
0 commit comments