Skip to content

Commit

Permalink
fix: missing @ in tagFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoulb committed Jan 13, 2019
1 parent 7136e00 commit 3faa0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/multiSemanticRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async function releasePackage(pkg, createInlinePlugin, multiContext) {
// Add the package name into tagFormat.
// 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.
// It'd also be difficult to merge all the assets into one release without full editing/overriding the plugins.
options.tagFormat = name + "${version}";
options.tagFormat = name + "@${version}";

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

0 comments on commit 3faa0f1

Please sign in to comment.