Fix release-notes.js (#926)

Was missing trailing `, causing [this
failure](https://github.com/maplibre/maputnik/actions/runs/10619718712/job/29437920164)
This commit is contained in:
Kevin Schaul
2024-08-29 14:11:14 -05:00
committed by GitHub
parent 4dd34e99fd
commit ca45bcce86

View File

@@ -42,7 +42,7 @@ if (previous) {
}
const templatedReleaseNotes = `${header}
${latest.changelog}
${latest.changelog}`;
// eslint-disable-next-line eol-last
process.stdout.write(templatedReleaseNotes.trimEnd());