From fd06fc893a5fad1880b2157a311619e576355cca Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Wed, 20 Aug 2025 10:32:09 +0200 Subject: [PATCH] ci(android): explicitly enable New Arch when building nightlies --- .github/actions/gradle/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/gradle/action.yml b/.github/actions/gradle/action.yml index b32e4c189..0e271bf58 100644 --- a/.github/actions/gradle/action.yml +++ b/.github/actions/gradle/action.yml @@ -15,6 +15,12 @@ runs: node --eval "require('./android/gradle-wrapper.js').configureGradleWrapper('${{ inputs.project-root }}/android')" shell: bash - name: Build + if: ${{ github.event_name != 'schedule' }} run: ./gradlew ${{ inputs.arguments }} shell: bash working-directory: ${{ inputs.project-root }}/android + - name: Build nightly + if: ${{ github.event_name == 'schedule' }} + run: ./gradlew -PnewArchEnabled=true ${{ inputs.arguments }} + shell: bash + working-directory: ${{ inputs.project-root }}/android