From 55fd752f5c2878c3ea50218df0d80fd83d3b4704 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Tue, 25 Nov 2025 17:17:33 +0500 Subject: [PATCH] mobile: remove debug keystore before build --- .github/workflows/android.publish.internal.yml | 3 +++ .github/workflows/android.publish.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/android.publish.internal.yml b/.github/workflows/android.publish.internal.yml index 5d16fcf73..c86cd4bb9 100644 --- a/.github/workflows/android.publish.internal.yml +++ b/.github/workflows/android.publish.internal.yml @@ -94,6 +94,9 @@ jobs: cd apps/mobile npx tsc --noEmit + - name: Remove debug keystore + run: rm -rf apps/mobile/android/app/debug.keystore + - name: Build unsigned app bundle run: yarn release:android:bundle diff --git a/.github/workflows/android.publish.yml b/.github/workflows/android.publish.yml index 448306794..3470f0968 100644 --- a/.github/workflows/android.publish.yml +++ b/.github/workflows/android.publish.yml @@ -78,6 +78,9 @@ jobs: cd apps/mobile npx tsc --noEmit + - name: Remove debug keystore + run: rm -rf apps/mobile/android/app/debug.keystore + - name: Build unsigned app bundle run: yarn release:android:bundle