overleaf/services/web/bin/sentry_upload
Christopher Hoskin 3988f815af Merge pull request #13182 from overleaf/jpa-disable-sentry-upload
[web] temporarily disable upload of source maps to sentry

GitOrigin-RevId: 76eaa7533baf74b92002d6ba91b2220fc79aa3f9
2023-05-24 08:04:10 +00:00

20 lines
522 B
Bash
Executable file

#!/bin/sh
set -e
echo "Sentry upload is temporarily disabled."
exit 0
if [[ "$BRANCH_NAME" == "master" || "$BRANCH_NAME" == "main" ]]; then
rm -rf sentry_upload
mkdir sentry_upload
tar --directory sentry_upload -xf build.tar
cd sentry_upload/public
SENTRY_RELEASE=${COMMIT_SHA}
OPTS="--no-rewrite --url-prefix ~"
sentry-cli releases new "$SENTRY_RELEASE"
sentry-cli releases files "$SENTRY_RELEASE" upload-sourcemaps ${OPTS} .
sentry-cli releases finalize "$SENTRY_RELEASE"
rm -rf sentry_upload
fi