Skip to content
This repository was archived by the owner on Oct 22, 2021. It is now read-only.

Commit 2bc24a5

Browse files
author
Mario Manno
committed
Fix code display in release docs
1 parent 0ce7b8a commit 2bc24a5

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

content/en/docs/quarks-operator/Development/releasing.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,21 @@ Every major release should have it's own branch, i.e. `v7.x`.
2020

2121
Merge the current state into the release branch:
2222

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+
```
2729

2830
Create a tag on that branch and push it, to create a new release:
2931

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+
```
3438

3539
*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.
3640

@@ -82,8 +86,10 @@ Be sure to adapt menus in all branches (`config.toml`) to match the new app URL.
8286

8387
Delete the tag and push it again:
8488

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+
```
8793

8894
## Publishing the Github Release fails
8995

0 commit comments

Comments
 (0)