From 5403a2cea914e0d8caf68a787451d9123b026162 Mon Sep 17 00:00:00 2001 From: 777genius Date: Wed, 27 May 2026 18:37:46 +0300 Subject: [PATCH] ci(release): tolerate sentry upload bundles --- scripts/ci/verify-sentry-release.cjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ci/verify-sentry-release.cjs b/scripts/ci/verify-sentry-release.cjs index 4722b4f1..98952376 100644 --- a/scripts/ci/verify-sentry-release.cjs +++ b/scripts/ci/verify-sentry-release.cjs @@ -98,9 +98,9 @@ function postbuild() { } if (missingDebugIdDirs.length > 0) { - fail( + console.warn( [ - 'Sentry debug IDs were not injected into built JavaScript artifacts', + '[sentry-release] warning: Sentry debug ID comments were not found in built JavaScript artifacts', ...missingDebugIdDirs.map((dir) => ` - ${dir}`), ].join('\n') ); @@ -117,7 +117,7 @@ function postbuild() { } console.log( - `[sentry-release] postbuild ok: ${jsFiles.length} JS artifacts built, debug IDs were injected, and source maps were removed after upload` + `[sentry-release] postbuild ok: ${jsFiles.length} JS artifacts built and source maps were removed after upload` ); }