From b3e7b02eb9927b45dcd74ca7d8f5988a8f21f85b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Correa=20Casablanca?= Date: Thu, 8 Aug 2024 21:26:01 +0200 Subject: [PATCH] fix: env passthrough for publish:safe Signed-off-by: Andres Correa Casablanca --- turbo.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 1305859..c2842af 100644 --- a/turbo.json +++ b/turbo.json @@ -97,7 +97,9 @@ }, "publish:safe": { "dependsOn": ["^publish:safe"], - "cache": false + "cache": false, + "env": ["NODE_AUTH_TOKEN", "NPM_CONFIG_PROVENANCE"], + "passThroughEnv": ["NODE_AUTH_TOKEN", "NPM_CONFIG_PROVENANCE"] }, "test": { "dependsOn": ["build", "^test"],