From 360530fe1ccba67b96bac221298e8236c4391133 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sun, 14 Jun 2026 23:53:03 +0700 Subject: [PATCH] fix(ci): add tauri android init step before build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gen/android/ is gitignored — must regenerate in CI. Co-Authored-By: Claude --- .github/workflows/android.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 862a99f..a64a317 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -72,6 +72,14 @@ jobs: - name: Install Tauri CLI run: cd apps/tauri && bun install + - name: Init Tauri Android project + working-directory: apps/tauri + env: + JAVA_HOME: ${{ env.JAVA_HOME_21_X64 }} + ANDROID_HOME: ${{ env.ANDROID_SDK_ROOT }} + NDK_HOME: ${{ env.ANDROID_NDK_HOME }} + run: bun tauri android init + - name: Build Tauri Android APK working-directory: apps/tauri env: