overleaf/services/web/bin/sentry_upload
Alf Eaton e4f0ea83e7 Remove ignore pattern from Sentry config (#20778)
GitOrigin-RevId: 1fa77e49f8c5124f30774536b044d96d06ca8c18
2024-10-14 10:59:59 +00:00

17 lines
510 B
Bash
Executable file

#!/bin/sh
set -e
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}
sentry-cli releases new "$SENTRY_RELEASE"
sentry-cli releases set-commits --auto "$SENTRY_RELEASE"
sentry-cli releases files "$SENTRY_RELEASE" upload-sourcemaps --no-rewrite --url-prefix ~ .
sentry-cli releases finalize "$SENTRY_RELEASE"
rm -rf sentry_upload
fi