Skip to content

Commit d9c6cc7

Browse files
committed
build: annotate release
1 parent 37cc3a5 commit d9c6cc7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/release.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,13 @@ async function main() {
365365
: `${pkg.name}@${pkg.version}`
366366

367367
versionsToPush.push(`refs/tags/${tagName}`)
368-
await runIfNotDry('git', ['tag', `${tagName}`])
368+
await runIfNotDry('git', [
369+
'tag',
370+
'-a',
371+
`${tagName}`,
372+
'-m',
373+
`Release ${tagName}`,
374+
])
369375
}
370376

371377
if (!noPublish) {

0 commit comments

Comments
 (0)