fix(web): use proper git-tag for Sentry upload

This commit is contained in:
Joshua A. Horton 2023-07-05 10:02:27 +07:00
parent 3b22c198c1
commit fe23fbb855

View file

@ -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
}