From fe23fbb855c9cec22e313baa9b11b6dc411d98bf Mon Sep 17 00:00:00 2001 From: "Joshua A. Horton" Date: Wed, 5 Jul 2023 10:02:27 +0700 Subject: [PATCH] fix(web): use proper git-tag for Sentry upload --- web/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ci.sh b/web/ci.sh index 76e5fdad98..1c7a540bd7 100755 --- a/web/ci.sh +++ b/web/ci.sh @@ -52,7 +52,7 @@ function web_sentry_upload () { pushd "$ARTIFACT_FOLDER" echo "Uploading to Sentry..." - npm run sentry-cli -- releases files "$SENTRY_RELEASE_VERSION" upload-sourcemaps --strip-common-prefix "@keymanapp/keyman/" --rewrite --ext js --ext map --ext ts || fail "Sentry upload failed." + npm run sentry-cli -- releases files "$VERSION_GIT_TAG" upload-sourcemaps --strip-common-prefix "@keymanapp/keyman/" --rewrite --ext js --ext map --ext ts || fail "Sentry upload failed." echo "Upload successful." popd }