We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70e8927 commit b3cf736Copy full SHA for b3cf736
packages/bundler-plugin-core/src/build-plugin-manager.ts
@@ -471,7 +471,8 @@ export function createSentryBuildPluginManager(
471
const cliInstance = createCliInstance(options);
472
473
if (options.release.create) {
474
- await cliInstance.releases.new(options.release.name);
+ const releaseOutput = await cliInstance.releases.new(options.release.name);
475
+ logger.debug("Release created:", releaseOutput);
476
}
477
478
if (options.release.uploadLegacySourcemaps) {
0 commit comments