From c035677cec8094172bbcd74c18c30a46eb23e401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Pfeuffer?= Date: Mon, 17 Jul 2023 12:55:54 +0200 Subject: [PATCH] Prevent npm release without token --- scm-ui/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/build.gradle b/scm-ui/build.gradle index 95acc300d3..44736175b9 100644 --- a/scm-ui/build.gradle +++ b/scm-ui/build.gradle @@ -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' }