Bump com.android.application from 8.4.0-alpha03 to 8.5.0-alpha08 #2932
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Give permission to executable | |
run: chmod +x gradlew | |
- name: Clear build cache | |
uses: gradle/[email protected] | |
with: | |
gradle-version: nightly | |
arguments: clean | |
- name: Build with gradle | |
uses: gradle/[email protected] | |
with: | |
gradle-version: nightly | |
arguments: assembleDevDebug | |
- name: Upload debug apks | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-arm64-v8a | |
path: app/build/outputs/apk/dev/debug/app-dev-arm64-v8a-debug.apk | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: app-armeabi-v7a | |
path: app/build/outputs/apk/dev/debug/app-dev-armeabi-v7a-debug.apk | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: app-x86 | |
path: app/build/outputs/apk/dev/debug/app-dev-x86-debug.apk | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: app-x86_64 | |
path: app/build/outputs/apk/dev/debug/app-dev-x86_64-debug.apk | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: app-universal | |
path: app/build/outputs/apk/dev/debug/app-dev-universal-debug.apk |