1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 23:29:41 +02:00

sentry url fix

This commit is contained in:
Vitaly Sverchinsky 2021-06-12 00:35:59 +03:00
parent e8b186a9b4
commit 08b1987ea3

View File

@ -9,11 +9,8 @@ set -euxo pipefail
# each time job is started, workarounds?
curl -sL https://sentry.io/get-cli/ | bash
#Where debug symbols will go
UPLOAD_URL=https://${SENTRY_HOST}/api/${SENTRY_PROJECT}/minidump/?sentry_key=${SENTRY_DSN_KEY}
SYMBOLS=$(find debug | xargs)
${INSTALL_DIR}/sentry-cli --auth-token ${SENTRY_AUTH_TOKEN} --url ${UPLOAD_URL} \
${INSTALL_DIR}/sentry-cli --auth-token ${SENTRY_AUTH_TOKEN} --url ${SENTRY_HOST} \
--org ${SENTRY_ORG_SLUG}} \
--project ${SENTRY_PROJECT_SLUG} ${SYMBOLS}