我正在尝试使用np将软件包发布到npm
,直到一切都达到了新的水平,一切似乎都还不错。无法弄清楚出了什么问题。如果有人可以帮忙。
✔ Prerequisite check
✔ Git
✔ Cleanup
✔ Installing dependencies using npm
✔ Running tests using npm
✖ Bumping version using npm
→ v1.0.3
Publishing package using npm
Pushing tags
✖ Command failed: npm version 1.0.3
npm ERR! code 128
npm ERR! Command failed: git tag v1.0.3 -sm 1.0.3
npm ERR! error: cannot run gpg: No such file or directory
npm ERR! error: gpg failed to sign the data
npm ERR! error: unable to sign the tag
npm ERR!
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/ds/.npm/_logs/2019-06-28T13_11_44_469Z-debug.log
v1.0.3
答案 0 :(得分:0)
问题是我将version-sign-git-tag
设置为true
,并且由于我的计算机上没有安装gpg
,因此标记的签名失败。将标志设置为false
解决了此问题。我猜不是最好的方法,而是最快的方法。