Skip to content

Commit 45dc4f1

Browse files
pwt-cdclaude
andcommitted
FIX: Read changelog from root CHANGELOG.md instead of specifications subdirectory
- Root CHANGELOG.md contains the actual recent entries (v3.2.1, v3.2.2, v3.2.3) - Specifications CHANGELOG.md was outdated and only contained v3.0.0 - This fixes the Recent Changes section to show the current v3.2.3 changelog entry - Resolves issue where recent changelog commits were not appearing on landing page 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent b79a44d commit 45dc4f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,9 @@ jobs:
369369
370370
# Extract the most recent changelog entry in keepachangelog.com format
371371
echo "📋 Extracting latest changelog entry..."
372-
if [ -f "drafts/current/specifications/CHANGELOG.md" ]; then
372+
if [ -f "CHANGELOG.md" ]; then
373373
# Get the first changelog entry and format it cleanly like keepachangelog.com
374-
sed -n '/^## \[/,/^## \[/p' drafts/current/specifications/CHANGELOG.md | \
374+
sed -n '/^## \[/,/^## \[/p' CHANGELOG.md | \
375375
sed '$d' | \
376376
sed 's/🎉\|✨\|🔧\|⬆️\|🏗️\|📊\|🎯\|⚠️\|🐍\|🚀\|🛡️\|🎨\|🧪\|📋\|👥\|💰\|📦\|🔄\|📚//g' | \
377377
sed 's/^## \[\([^]]*\)\] - \(.*\)/<h3>\1 - \2<\/h3>/' | \

0 commit comments

Comments
 (0)