Skip to content

Commit

Permalink
chore: Fix Discord release message
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Apr 18, 2024
1 parent 0be2d68 commit de4081b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/discord-message/action.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function getReleaseBody(name, version) {
const release = result.status === 200 ? result.data : undefined;
if (!release || !release.body) return;

const title = ':package: [${tag}](<${release.html_url}>)\n';
const title = `:package: [${tag}](<${release.html_url}>)`;
const body = formatBody(release.body);
if (!body) return;

Expand Down

0 comments on commit de4081b

Please sign in to comment.