feat: gitea CI (test + apk artifact), repo docs
build / build (push) Failing after 4m29s

This commit is contained in:
Arnie via Claude
2026-06-12 15:10:13 +02:00
parent a57113232e
commit 5af5b4513d
3 changed files with 132 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: build
on:
push:
branches: [main]
tags: ['*']
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
container:
image: docksee/nixos-gitea:${{ vars.NIX_IMAGE_VERSION }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Unit tests
run: nix develop --command gradle --no-daemon :app:testReleaseUnitTest
- name: Build release APK
run: nix develop --command gradle --no-daemon :app:assembleRelease
- uses: actions/upload-artifact@v3
with:
name: android-webview-kiosk-apk
path: app/build/outputs/apk/release/app-release.apk