about summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-04-09 13:29:37 -0500
committerGitHub <noreply@github.com>2025-04-09 11:29:37 -0700
commit02a05d994828ea6e44898e7c5f2841cbeeee3930 (patch)
tree297fbf6768a57b049cca26e1e39a1d7cc8ae9ff2 /.github
parent4c142a86b4beb057f3f4f94ffaad2c8e51aa2e59 (diff)
downloadvoidsky-02a05d994828ea6e44898e7c5f2841cbeeee3930.tar.zst
Pass in Sentry vars to prod android build (#8170)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-submit-android.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml
index 2d1a45ee3..fcd08a2e9 100644
--- a/.github/workflows/build-submit-android.yml
+++ b/.github/workflows/build-submit-android.yml
@@ -139,7 +139,7 @@ jobs:
 
       - name: 🏗️ Build Production APK
         if: ${{ inputs.profile == 'production' }}
-        run: yarn use-build-number-with-bump eas build -p android --profile production-apk --local --output build.apk --non-interactive
+        run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} yarn use-build-number-with-bump eas build -p android --profile production-apk --local --output build.apk --non-interactive
 
       - name: 🚀 Upload Production APK Artifact
         id: upload-artifact-production-apk