This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Bump androidx.biometric:biometric-ktx from 1.2.0-alpha05 to 1.4.0-alpha01 #1039
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: | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload debug artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-debug | |
path: ./app/build/outputs/apk/debug/*.apk | |
- name: Upload release artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-release | |
path: ./app/build/outputs/apk/release/*.apk |