Restructure CI

This commit is contained in:
Joscha 2025-01-22 14:52:08 +01:00
parent 3a62af24d1
commit e6b16ce067
2 changed files with 68 additions and 21 deletions

12
build_android Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
pushd tta-app
pnpm install --frozen-lockfile
pnpm tauri android build --apk
popd
mkdir -p target/release/
mv tta-app/src-tauri/gen/android/app/build/outputs/apk/universal/release/app-universal-release-unsigned.apk target/release/tta-app.apk
echo "tta-app.apk can be found at target/release/tta-app.apk"