Bluesky app fork with some witchin' additions ๐Ÿ’ซ

Pass in Sentry vars to prod android build (#8170)

authored by

Eric Bailey and committed by
GitHub
02a05d99 4c142a86

+1 -1
+1 -1
.github/workflows/build-submit-android.yml
··· 139 139 140 140 - name: ๐Ÿ—๏ธ Build Production APK 141 141 if: ${{ inputs.profile == 'production' }} 142 - run: yarn use-build-number-with-bump eas build -p android --profile production-apk --local --output build.apk --non-interactive 142 + 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 143 143 144 144 - name: ๐Ÿš€ Upload Production APK Artifact 145 145 id: upload-artifact-production-apk