From 67f621519e73ad9fa2913b0fd8f977271f0cac1f Mon Sep 17 00:00:00 2001 From: Declan Carroll Date: Tue, 5 May 2026 13:21:45 +0100 Subject: [PATCH] ci: Scope RELEASE env to editor-ui turbo task (no-changelog) (#29585) Co-authored-by: Claude Opus 4.6 --- turbo.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 745b290f716..3f1392ce0aa 100644 --- a/turbo.json +++ b/turbo.json @@ -1,5 +1,5 @@ { - "globalEnv": ["CI", "BUILD_WITH_COVERAGE", "RELEASE"], + "globalEnv": ["CI", "BUILD_WITH_COVERAGE"], "globalPassThroughEnv": ["CODECOV_TOKEN", "COVERAGE_ENABLED", "SENTRY_AUTH_TOKEN"], "tasks": { "clean": { "cache": false }, @@ -7,6 +7,11 @@ "dependsOn": ["^build"], "outputs": ["dist/**"] }, + "n8n-editor-ui#build": { + "dependsOn": ["^build"], + "outputs": ["dist/**"], + "env": ["RELEASE"] + }, "typecheck": { "dependsOn": ["^typecheck", "^build"] },