Files
metabuilder/repoforge/.github/workflows/android.yml
johndoe6345789 ab15c9f5eb feat: Add RepoForge Android GitHub client
Custom Android GitHub client built with:
- Kotlin + Jetpack Compose
- Material Design 3
- Gradle build system

Alternative to native GitHub Android app with improved UX.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:00:19 +00:00

37 lines
703 B
YAML

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