Skip to content

Commit

Permalink
release-process: fix find command being too loose
Browse files Browse the repository at this point in the history
Signed-off-by: Maël Valais <mael@vls.dev>
  • Loading branch information
maelvls committed Sep 1, 2023
1 parent e6a60e0 commit 035783e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/docs/contributing/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ page if a step is missing or if it is outdated.
+genversionwithcli "release-1.12" "$LATEST_VERSION"
```
4. (**final + patch release**) Bump all versions present in installation
instructions. To find these versions:
4. (**final + patch release of the latest minor version**) Bump all versions present in installation
instructions. To find these versions:
```bash
find ./content/docs/installation -name '*.md' -not -path '*/upgrad**' -exec sed -i.bak 's/1.11../1.12.0/g' '{}' \;
find ./content/docs/installation -name '*.md' -not -path '*/upgrad**' -and -not -path '*supported-releases.md' -exec sed -i.bak 's/1.11./1.12.0/g' '{}' \;
rm -f **/*.bak
```
Expand Down

0 comments on commit 035783e

Please sign in to comment.