Files
android-webview-kiosk/.gitea/workflows/build.yaml
T
arnie 168e862c3e
build / build (push) Has been cancelled
fix: CI artifact path to cover all flavor APKs
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-12 20:13:22 +02:00

26 lines
680 B
YAML

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:test
- name: Build release APKs
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/*.apk