We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec0ebc commit 227cc7fCopy full SHA for 227cc7f
service/createRelease.go
@@ -85,7 +85,7 @@ func npmPublish(pathToSource string, nextVersion string) {
85
os.Exit(2)
86
}
87
88
- command := exec.Command("npm", "publish", pathToSource, "--tag", fmt.Sprintf("%s@%s", result["name"], nextVersion))
+ command := exec.Command("npm", "publish", pathToSource, "--tag", nextVersion, "--tag latest")
89
command.Stdout = os.Stdout
90
command.Stderr = os.Stderr
91
// Run the command
0 commit comments