Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud upload dSYM to Sentry
It seems that sentry-cli has changed since the previous responses were made. Here's the ci_scripts/ci_post_xcodebuild.sh that worked for me: set -e if [ ! -d "$CI_ARCHIVE_PATH" ]; then echo "Archive does not exist, skipping Sentry upload" exit 0 fi # This is necessary in order to have sentry-cli # install locally into the current directory export INSTALL_DIR=$PWD if [[ $(command -v sentry-cli) == "" ]]; then echo "Installing Sentry CLI" curl -sL https://sentry.io/get-cli/ | bash fi echo "Authenticate to Sentry" sentry-cli login --auth-token $SENTRY_AUTH_TOKEN echo "Uploading dSYM to Sentry" sentry-cli debug-files upload -o <org> -p <project> $CI_ARCHIVE_PATH
Mar ’24