Ignore the Bitbucket error banner - this is a red herring
CI CD fails when trying to upload source maps
Error
Issue: https://github.com/getsentry/sentry-cli/issues/543
Workaround that works for me (as it was working a few days ago which coincides with release v1.44.2):
- create sentry-install.sh (v1.44.1)
- Replace install command in your CI/CD steps:
Replace install command
wget -O - https://sentry.io/get-cli/ | bash
or
curl -sL https://sentry.io/get-cli/ | bash
with
sentry-install.sh
Hope this helps.