Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
pkosiec committed May 24, 2024
1 parent a5d4912 commit 2c28b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magefiles/target/release/update_docs_ver.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func UpdateDocsVersion(latestRelVer string) {
previousRelVer += ".0" // add patch version

// Replace the version in the files
dirs := []string{"./docs/installation/", "./docs/configuration/", "./docs/operation/", "./docs/cli/"}
dirs := []string{"./docs/installation/", "./docs/features/", "./docs/plugins", "./docs/troubleshooting/", "./docs/cli/", "./docs/self-hosted-configuration"}
for _, dir := range dirs {
shx.MustCmdf(`find %s -type f \( -name "*.md" -o -name "*.mdx" \) -exec sed -i.bak "s/%s/%s/g" {} \;`, dir, previousRelVer, latestRelVer).MustRunV()
}
Expand Down

0 comments on commit 2c28b7b

Please sign in to comment.