mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-02-04 07:43:18 +00:00
35 lines
722 B
YAML
35 lines
722 B
YAML
# Build Android version of the app
|
|
|
|
name: Android
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Prepare Nix devshell
|
|
uses: ./.github/actions/nix-devshell
|
|
with:
|
|
prebuild: "true"
|
|
cache: "true"
|
|
cache-key-files: "flake.lock"
|
|
|
|
- name: Collect Translation Files
|
|
uses: ./.github/actions/nix-devshell
|
|
with:
|
|
commands: |
|
|
cd lib/l10n
|
|
python3 collect_translations.py
|
|
|
|
- name: Build Debug APK
|
|
uses: ./.github/actions/nix-devshell
|
|
with:
|
|
commands: |
|
|
flutter build apk --debug
|