You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Generate release notes using the existing .releaserc.json configuration
106
+
notes=$(npx semantic-release --dry-run --no-ci --plugins @semantic-release/release-notes-generator 2>/dev/null | grep -A 1000 "The release notes for this version" | tail -n +2 || echo "## What's Changed\n\nThis release includes various improvements and bug fixes.")
107
+
108
+
echo "notes<<EOF" >> $GITHUB_OUTPUT
109
+
echo "$notes" >> $GITHUB_OUTPUT
110
+
echo "EOF" >> $GITHUB_OUTPUT
111
+
80
112
- name: Create release
81
113
id: create-release
82
114
uses: actions/github-script@v7
@@ -87,14 +119,14 @@ jobs:
87
119
repo: context.repo.repo,
88
120
tag_name: `v${process.env.VERSION}`,
89
121
name: `v${process.env.VERSION}`,
90
-
body: 'Automated release created by GitHub Actions',
0 commit comments