Skip to content

deps(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.0 to 2.10.0 #5

deps(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.0 to 2.10.0

deps(deps): bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.0 to 2.10.0 #5

Workflow file for this run

name: Android CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: "temurin"
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run lint
run: ./gradlew lint
- name: Build Release APK
run: ./gradlew assembleRelease
- name: Upload Release APK
uses: actions/upload-artifact@v4
with:
name: release-apk
path: app/build/outputs/apk/release/*.apk
- name: Upload Debug APK
uses: actions/upload-artifact@v4
with:
name: debug-apk
path: app/build/outputs/apk/debug/*.apk