Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Bump the kotlin group across 1 directory with 5 updates #1078

Bump the kotlin group across 1 directory with 5 updates

Bump the kotlin group across 1 directory with 5 updates #1078

Workflow file for this run

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