fix(readme): fix scale readme

This commit is contained in:
Stavros kois 2023-12-31 17:57:50 +02:00
parent 56ae722ec7
commit 601c21466d
No known key found for this signature in database
GPG Key ID: 52FD8F5EE0A731BB
1 changed files with 12 additions and 3 deletions

View File

@ -96,9 +96,18 @@ patch_apps() {
touch "website/docs/charts/${train}/${chartname}/CHANGELOG.md" touch "website/docs/charts/${train}/${chartname}/CHANGELOG.md"
fi fi
cp -rf "website/docs/charts/${train}/${chartname}/CHANGELOG.md" "${target}/CHANGELOG.md" 2>/dev/null || : cp -rf "website/docs/charts/${train}/${chartname}/CHANGELOG.md" "${target}/CHANGELOG.md" 2>/dev/null || :
sed -i '1d' "${target}/CHANGELOG.md" should_add=$(cat ${target}/CHANGELOG.md | grep "for the complete changelog, please refer to the website")
sed -i '1s/^/*for the complete changelog, please refer to the website*\n\n/' "${target}/CHANGELOG.md" if [[ -z $should_add ]]; then
sed -i '1s/^/**Important:**\n/' "${target}/CHANGELOG.md" echo "Adding changelog notice for: ${chartname}"
# Count the frontmatter lines
line_count=$(sed -n '/^---$/,/^---$/p' "${target}/CHANGELOG.md" | wc -l)
# Increase the line count by 1
line_count=$((line_count + 1))
# Add a line to the changelog
sed -i "${line_count + 1}s/^/*for the complete changelog, please refer to the website*\n\n/" "${target}/CHANGELOG.md"
sed -i "${line_count + 1}s/^/**Important:**\n/" "${target}/CHANGELOG.md"
fi
# Truncate changelog to only contain the last 100 lines
sed -i '100,$ d' "${target}/CHANGELOG.md" || : sed -i '100,$ d' "${target}/CHANGELOG.md" || :
# Generate SCALE App description file # Generate SCALE App description file
cat ${target}/Chart.yaml | yq .description -r >> ${target}/app-readme.md cat ${target}/Chart.yaml | yq .description -r >> ${target}/app-readme.md