style: format

This commit is contained in:
元凛
2022-02-09 17:41:43 +08:00
parent dec18932cf
commit 9572a973dd
4 changed files with 9 additions and 9 deletions

View File

@@ -40,15 +40,15 @@ const body = getChangelog(changelog);
async function run() {
const url = newGithubReleaseUrl({
user,
user,
repo,
tag,
body: body,
});
tag,
body: body,
});
await open(url);
console.log(chalk.yellow('🚀 Please check tag and changelog. Then click publish!'));
};
}
run();