diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 2 | ||||
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index 90282840..4952f375 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -31,6 +31,8 @@ jobs: uses: gradle/gradle-build-action@v2.1.3 with: arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease + env: + SENTRY_DSN: ${{ secrets.SENTRY_DSN }} - name: Upload non-free release APK uses: actions/upload-artifact@v2.3.1 diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index 3a0bb651..a055c0b2 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -31,6 +31,7 @@ jobs: uses: gradle/gradle-build-action@v2.1.3 env: SNAPSHOT: "true" + SENTRY_DSN: ${{ secrets.SENTRY_DSN }} with: arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease |