From 6f48f65bd11993828a47e14d0a8425e04a9e9852 Mon Sep 17 00:00:00 2001 From: Infi Date: Mon, 27 Mar 2023 03:27:26 +0200 Subject: [PATCH] ci: fetch RVX_ANALYSIS_ENABLED, RVX_ANALYSIS_BASEURL from context --- .github/workflows/android.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index f2fa2d0e..3990aa82 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest env: - RVX_SENTRY_DSN: "" + RVX_SENTRY_DSN: ${{ vars.RVX_SENTRY_DSN }} + RVX_ANALYSIS_ENABLED: ${{ vars.RVX_ANALYSIS_ENABLED }} + RVX_ANALYSIS_BASEURL: ${{ vars.RVX_ANALYSIS_BASEURL }} steps: - uses: actions/checkout@v3