From a422104de6617be2d23c7ab41e9942d976505219 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 3 Jul 2023 13:32:54 -0500 Subject: [PATCH] Fix bash variable for sentry release creation --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4f63b6b25..5796a43b1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -363,7 +363,7 @@ stages: - bash: | echo "Uploading source maps to sentry" curl -sL https://sentry.io/get-cli/ | bash - RELEASENAME="$Lidarr@{LIDARRVERSION}-${BUILD_SOURCEBRANCHNAME}" + RELEASENAME="Lidarr@${LIDARRVERSION}-${BUILD_SOURCEBRANCHNAME}" sentry-cli releases new --finalize -p lidarr -p lidarr-ui -p lidarr-update "${RELEASENAME}" sentry-cli releases -p lidarr-ui files "${RELEASENAME}" upload-sourcemaps _output/UI/ --rewrite sentry-cli releases set-commits --auto "${RELEASENAME}"