ci: rework workflows to add one for android

This commit is contained in:
2026-06-12 09:00:10 +02:00
parent 961a8d3918
commit 3affa455d0
3 changed files with 61 additions and 1 deletions
@@ -0,0 +1,23 @@
name: Build and release a versioned android apk
on:
push:
tags:
- 'v*'
jobs:
release-apk:
runs-on: nixos
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Build apk
run: devenv shell build-android
- name: Create Gitea Release & Upload APK
uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
files: build/app/build/outputs/apk/release/*.apk
token: ${{ secrets.GITHUB_TOKEN }}