From a407fc7709f4a66e95e3fca4240782c9353ce97c Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Wed, 10 Nov 2021 08:15:25 +0100 Subject: [PATCH] fix: wrong release name in cli.releases.uploadSourceMaps --- bin/uploadSourceMapsToSentry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/uploadSourceMapsToSentry.js b/bin/uploadSourceMapsToSentry.js index 1fcbbf1..3e3ed52 100644 --- a/bin/uploadSourceMapsToSentry.js +++ b/bin/uploadSourceMapsToSentry.js @@ -16,7 +16,7 @@ async function createReleaseAndUpload() { const cli = new SentryCli(); await cli.releases.new(releaseName); - await cli.releases.uploadSourceMaps(version, { + await cli.releases.uploadSourceMaps(releaseName, { include: ['build/static/js'], urlPrefix: '~/static/js', rewrite: false,