Skip to content

Commit ca45bcc

Browse files
authored
Fix release-notes.js (#926)
Was missing trailing `, causing [this failure](https://github.com/maplibre/maputnik/actions/runs/10619718712/job/29437920164)
1 parent 4dd34e9 commit ca45bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/release-notes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if (previous) {
4242
}
4343
const templatedReleaseNotes = `${header}
4444
45-
${latest.changelog}
45+
${latest.changelog}`;
4646

4747
// eslint-disable-next-line eol-last
4848
process.stdout.write(templatedReleaseNotes.trimEnd());

0 commit comments

Comments
 (0)