Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/release-consolidated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,15 @@ jobs:
- name: Install git-cliff
run: cargo install git-cliff

- name: Generate release notes
run: |
TAG="${{ steps.tag.outputs.tag }}"

# Generate base changelog
git cliff --tag "$TAG" --strip header > base_notes.md
# Generate changelog for current tag
git cliff --tag $TAG > base_notes.md


# Remove the version header line to match original format
sed -i '1d' base_notes.md

# Create enhanced release notes
cat > enhanced_notes.md << EOF
Expand Down
Loading