Skip to content

Commit

Permalink
msg bold fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayazzz committed Jun 2, 2022
1 parent 616d719 commit 6f56017
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48776,7 +48776,7 @@ async function run() {

let msg = `NEW VERSION RELEASED (${version})\n`;
Object.keys(notificationMsg).forEach(x => {
msg += `**${x}**: ${notificationMsg[x]}\n`
msg += `*${x}* : ${notificationMsg[x]}\n`
});

await axios.default.post(gchat_webhook, { text: msg });
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mean-dao-publish",
"version": "7.0.0",
"version": "8.0.0",
"description": "GitHub Action to release and publish packages",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async function run() {

let msg = `NEW VERSION RELEASED (${version})\n`;
Object.keys(notificationMsg).forEach(x => {
msg += `**${x}**: ${notificationMsg[x]}\n`
msg += `*${x}* : ${notificationMsg[x]}\n`
});

await axios.default.post(gchat_webhook, { text: msg });
Expand Down

0 comments on commit 6f56017

Please sign in to comment.