mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-16 05:31:51 -04:00
30 lines
678 B
Bash
Executable File
30 lines
678 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# ci_post_xcodebuild.sh.sh
|
|
# Stoat
|
|
#
|
|
# Created by Angelo on 22/08/2024.
|
|
#
|
|
|
|
# Disable Sentry for now until until we setup our instance again
|
|
|
|
# set -e
|
|
|
|
# if [ ! -d "$CI_ARCHIVE_PATH" ]; then
|
|
# echo "Archive does not exist, skipping Sentry upload"
|
|
# exit 0
|
|
# fi
|
|
|
|
# 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 --include-sources -o stoat -p apple-ios $CI_ARCHIVE_PATH --force-foreground
|