This repository was archived by the owner on Oct 22, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed
content/en/docs/quarks-operator/Development Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,21 @@ Every major release should have it's own branch, i.e. `v7.x`.
20
20
21
21
Merge the current state into the release branch:
22
22
23
- git checkout v7.x
24
- git merge master
25
- # this will run CI, can be canceled
26
- git push
23
+ ``` bash
24
+ git checkout v7.x
25
+ git merge master
26
+ # this will run CI, can be canceled
27
+ git push
28
+ ```
27
29
28
30
Create a tag on that branch and push it, to create a new release:
29
31
30
- git tag v7.2.0
31
- # this will run CI again, release-drafter, then publish
32
- git push origin v7.2.0
33
- # runs ci, release drafter, publish
32
+ ``` bash
33
+ git tag v7.2.0
34
+ # this will run CI again, release-drafter, then publish
35
+ git push origin v7.2.0
36
+ # runs ci, release drafter, publish
37
+ ```
34
38
35
39
* Note* : Do not edit/create a release on Github before the publish step has finished, as it will overwrite the draft or create an additional draft.
36
40
@@ -82,8 +86,10 @@ Be sure to adapt menus in all branches (`config.toml`) to match the new app URL.
82
86
83
87
Delete the tag and push it again:
84
88
85
- git push -d origin v9.9.9
86
- git push origin v9.9.9
89
+ ``` bash
90
+ git push -d origin v9.9.9
91
+ git push origin v9.9.9
92
+ ```
87
93
88
94
## Publishing the Github Release fails
89
95
You can’t perform that action at this time.
0 commit comments