Skip to content

Commit 5d5ef78

Browse files
authored
Merge pull request #132 from kcp-dev/fix-release-docs
fix naming of release branches in docs
2 parents b017934 + d241dd8 commit 5d5ef78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/contributing/releasing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ The guide describes how to release a new version of the api-syncagent.
1010
## Minor Release
1111

1212
Minor releases (0.x) are tagged directly on the `main` branch and the `v0.X.0`
13-
tag represents where the corresponding `release/v0.X` branch branches off.
13+
tag represents where the corresponding `release-0.X` branch branches off.
1414

1515
1. Checkout the desired `main` branch commit.
1616
1. Tag the main module: `git tag -m "version 0.X" v0.X.0`
1717
1. Tag the SDK module: `git tag -m "SDK version 0.X" sdk/v0.X.0`
1818
1. Push the tags: `git push upstream v0.X.0 sdk/v0.X.0`
19-
1. Create the release branch: `git checkout -B release-v0.X`
20-
1. Push the release branch: `git push -u upstream release-v0.X`
19+
1. Create the release branch: `git checkout -B release-0.X`
20+
1. Push the release branch: `git push -u upstream release-0.X`
2121

2222
Once the tag and branch have been pushed, the documentation has to be manually
2323
updated to include the new minor release.
@@ -32,7 +32,7 @@ https://docs.kcp.io/api-syncagent/.
3232

3333
Patch releases (v0.x.y) are tagged with in a release branch.
3434

35-
1. Checkout the desired `release/v0.X` branch commit.
35+
1. Checkout the desired `release-0.X` branch commit.
3636
1. Tag the main module: `git tag -m "version 0.X.Y" v0.X.Y`
3737
1. Tag the SDK module: `git tag -m "SDK version 0.X.Y" sdk/v0.X.Y`
3838
1. Push the tags: `git push upstream v0.X.Y sdk/v0.X.Y`

0 commit comments

Comments
 (0)