We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
verifyConditions
1 parent 7c55636 commit 66eb0e4Copy full SHA for 66eb0e4
index.js
@@ -32,7 +32,7 @@ async function verifyConditions(pluginConfig, context) {
32
const pkg = await getPkg(pluginConfig, context);
33
34
// Verify the npm authentication only if `npmPublish` is not false and `pkg.private` is not `true`
35
- if (pluginConfig.npmPublish !== false && pkg.private !== true) {
+ if (!verified && pluginConfig.npmPublish !== false && pkg.private !== true) {
36
await verifyNpmAuth(npmrc, pkg, context);
37
}
38
} catch (error) {
0 commit comments