fix(ci): stop prepending plugin readme to release notes
- Remove the auto-injected Plugin README block from release.yml - Keep release note files as the first visible content in GitHub releases - Prevent future releases from surfacing an unnecessary link above the changelog
This commit is contained in:
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@@ -369,11 +369,6 @@ jobs:
|
|||||||
while IFS= read -r file; do
|
while IFS= read -r file; do
|
||||||
[ -z "$file" ] && continue
|
[ -z "$file" ] && continue
|
||||||
if [ -f "$file" ]; then
|
if [ -f "$file" ]; then
|
||||||
# Inject plugin README link before each release note file content
|
|
||||||
plugin_dir=$(dirname "$file")
|
|
||||||
readme_url="https://github.com/Fu-Jie/openwebui-extensions/blob/main/${plugin_dir}/README.md"
|
|
||||||
echo "> 📖 [Plugin README](${readme_url})" >> release_notes.md
|
|
||||||
echo "" >> release_notes.md
|
|
||||||
cat "$file" >> release_notes.md
|
cat "$file" >> release_notes.md
|
||||||
echo "" >> release_notes.md
|
echo "" >> release_notes.md
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user