You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Requires: --split-debug-info=build/app/outputs/symbols in your build command
132
-
# This file was created by the --split-debug-info command in Fastfile.
133
124
SYMBOLS_DIR="build/app/outputs/symbols"
125
+
134
126
if [ -d "$SYMBOLS_DIR" ]; then
135
127
echo "Uploading Dart debug symbols from $SYMBOLS_DIR..."
136
-
# This command will find the .symbol files and upload them to Sentry.
137
-
sentry-cli debug-files upload "$SYMBOLS_DIR" \
138
-
--org "$SENTRY_ORG" \
139
-
--project "$SENTRY_PROJECT" \
140
-
--auth-token "$SENTRY_AUTH_TOKEN" \
141
-
--log-level info
128
+
sentry-cli debug-files upload "$SYMBOLS_DIR"
142
129
else
143
-
echo "::warning::Symbols directory not found at $SYMBOLS_DIR. Did you add --split-debug-info to your build command? Check your Fastfile build arguments."
130
+
echo "::error::Symbols directory not found at $SYMBOLS_DIR. Check your Fastfile build arguments."
0 commit comments