Skip to content

Commit 3faa0f1

Browse files
committed
fix: missing @ in tagFormat
1 parent 7136e00 commit 3faa0f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/multiSemanticRelease.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async function releasePackage(pkg, createInlinePlugin, multiContext) {
150150
// Add the package name into tagFormat.
151151
// Thought about doing a single release for the tag (merging several packages), but it's impossible to prevent Github releasing while allowing NPM to continue.
152152
// It'd also be difficult to merge all the assets into one release without full editing/overriding the plugins.
153-
options.tagFormat = name + "${version}";
153+
options.tagFormat = name + "@${version}";
154154

155155
// Make an 'inline plugin' for this package.
156156
// The inline plugin is the only plugin we call semanticRelease() with.

0 commit comments

Comments
 (0)