Skip to content

Commit 4db8859

Browse files
fix: Disable Sentry source map upload in CI builds
- Set SENTRY_DISABLE_AUTO_UPLOAD=true in build step - Prevents auth token requirement during Gradle build - Sentry upload can be enabled later with proper secrets if needed This allows local builds to complete without Sentry authentication, which would require additional GitHub secrets configuration.
1 parent 50f3d9b commit 4db8859

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/local-android-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ jobs:
142142
- name: '🏗️ Build Release APK with Gradle'
143143
run: |
144144
export ANDROID_HOME="/home/digitalnomad91/Android/Sdk"
145+
# Disable Sentry source map upload in CI (requires auth token)
146+
export SENTRY_DISABLE_AUTO_UPLOAD=true
145147
cd android
146148
./gradlew clean assembleRelease \
147149
-x bundleRelease \

0 commit comments

Comments
 (0)