Add build automation and CI publishing workflow
Some checks failed
Android CI / build (push) Has been cancelled

This commit is contained in:
dom4k
2026-03-16 19:04:20 +00:00
parent c833fd467d
commit 842bfb4c9d
4 changed files with 124 additions and 0 deletions

26
.github/workflows/android.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Android CI
on:
push:
branches: ["master", "main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- name: Set up Android SDK
uses: android-actions/setup-android@v3
- name: Build debug APK
working-directory: android
run: ./gradlew assembleDebug --no-daemon