ci: Scope RELEASE env to editor-ui turbo task (no-changelog) (#29585)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Declan Carroll 2026-05-05 13:21:45 +01:00 committed by GitHub
parent d2e1eb30f1
commit 67f621519e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"]
},