Improve message for commit usage

This commit is contained in:
Thomas Piskol 2021-02-10 12:35:16 +01:00
parent ffd48b0175
commit 12579db49e
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ export const release = async (
const target_commitish = config.input_target_commitish;
let commitMessage: string = "";
if (target_commitish) {
commitMessage = ` using "${target_commitish}"`;
commitMessage = ` using commit "${target_commitish}"`;
}
console.log(
`👩‍🏭 Creating new GitHub release for tag ${tag_name}${commitMessage}...`