We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 012bf2d + 885158c commit b4aebcdCopy full SHA for b4aebcd
.github/workflows/release-consolidated.yml
@@ -66,12 +66,15 @@ jobs:
66
- name: Install git-cliff
67
run: cargo install git-cliff
68
69
- - name: Generate release notes
70
run: |
71
TAG="${{ steps.tag.outputs.tag }}"
72
73
- # Generate base changelog
74
- git cliff --tag "$TAG" --strip header > base_notes.md
+ # Generate changelog for current tag
+ git cliff --tag $TAG > base_notes.md
+
75
76
+ # Remove the version header line to match original format
77
+ sed -i '1d' base_notes.md
78
79
# Create enhanced release notes
80
cat > enhanced_notes.md << EOF
0 commit comments