Skip to content

Commit

Permalink
build: provide tag message in bump script
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Jun 16, 2022
1 parent f4a7774 commit feb81cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/bump.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ async function main(): Promise<void> {
}

await git('commit', '-m', `Release ${version}`);
await git('tag', `v${version}`);
await git('tag', `v${version}`, '-m', `v${version}`);

await updateChangelog(lastVersion, version);

// re-tag to include the changelog
await git('tag', '--force', `v${version}`);
await git('tag', '--force', `v${version}`, '-m', `v${version}`);
}

main().catch(console.error);

0 comments on commit feb81cd

Please sign in to comment.