Skip to content

Commit ab35de2

Browse files
committed
doc/design: Add a version prefix to the release tag in release.md
Update the doc/design/release.md documentation and ensure the git release tag that's produced is prefixed with `v` so Go dependency resolution works. Signed-off-by: timflannagan <[email protected]>
1 parent 724b7af commit ab35de2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/design/release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ If git `push` is disabled on `upstream` repository in your fork, then clone this
3737

3838
```bash
3939
# 0.11.0 is the bumped version.
40-
git tag -a 0.11.0 -m "Version 0.11.0"
40+
git tag -a v0.18.0 -m "Version 0.18.0"
4141

42-
# origin points to operator-framework/operator-lifecycle-manager
43-
git push origin 0.11.0
42+
# origin remote points to operator-framework/operator-lifecycle-manager
43+
git push origin v0.18.0
4444
```
4545

4646
* Confirm that new images have been built here: <https://quay.io/repository/operator-framework/olm?tab=builds>.

0 commit comments

Comments
 (0)