diff options
author | Eric Bailey <git@esb.lol> | 2025-03-27 09:43:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-27 09:43:59 -0500 |
commit | 1e688dee248dcbee318ed241bc19968b711bc546 (patch) | |
tree | 522e7c0b836958241d5410f7d29569e91ccd9c68 /.github/workflows/bundle-deploy-eas-update.yml | |
parent | c265e0fb96974597592c897f02e5d725aafec071 (diff) | |
download | voidsky-1e688dee248dcbee318ed241bc19968b711bc546.tar.zst |
Make sure Sentry's auth token is set on process (#8040)
* Make sure Sentry's auth token is set on process * Pass in token explicitly
Diffstat (limited to '.github/workflows/bundle-deploy-eas-update.yml')
-rw-r--r-- | .github/workflows/bundle-deploy-eas-update.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index e35743cc9..2a7aa4f40 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -118,7 +118,7 @@ jobs: - name: 🏗️ Create Bundle if: ${{ !steps.fingerprint.outputs.includes-changes }} - run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} EXPO_PUBLIC_ENV="${{ inputs.channel || 'testflight' }}" yarn export + run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} EXPO_PUBLIC_ENV="${{ inputs.channel || 'testflight' }}" yarn export - name: 📦 Package Bundle and 🚀 Deploy if: ${{ !steps.fingerprint.outputs.includes-changes }} |