Prevent npm release without token

This commit is contained in:
René Pfeuffer
2023-07-17 12:55:54 +02:00
parent 916cfcd3aa
commit c035677cec

View File

@@ -217,9 +217,9 @@ task publish(type: YarnTask) {
if (project.hasProperty('npmEmail')) {
yarnrc.append "email ${project.property('npmEmail')}\n"
}
args = ['run', 'deploy', project.version]
}
}
args = ['run', 'deploy', project.version]
finalizedBy 'cleanUpAfterPublishing'
dependsOn 'yarn_install'
}