We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb55d4 commit 974ec4fCopy full SHA for 974ec4f
.github/actions/gradle/action.yml
@@ -15,6 +15,12 @@ runs:
15
node --eval "require('./android/gradle-wrapper.js').configureGradleWrapper('${{ inputs.project-root }}/android')"
16
shell: bash
17
- name: Build
18
+ if: ${{ github.event_name != 'schedule' }}
19
run: ./gradlew ${{ inputs.arguments }}
20
21
working-directory: ${{ inputs.project-root }}/android
22
+ - name: Build nightly
23
+ if: ${{ github.event_name == 'schedule' }}
24
+ run: ./gradlew -PnewArchEnabled=true ${{ inputs.arguments }}
25
+ shell: bash
26
+ working-directory: ${{ inputs.project-root }}/android
0 commit comments