From b1b72229c4792d467c1430f8dcddb81d8a7f90cb Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Mon, 30 Mar 2026 15:17:46 +0500 Subject: [PATCH] ci: fix workflow --- apps/mobile/android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/android/app/build.gradle b/apps/mobile/android/app/build.gradle index 469c22f33..0eadcb50a 100644 --- a/apps/mobile/android/app/build.gradle +++ b/apps/mobile/android/app/build.gradle @@ -107,7 +107,7 @@ def prBuildNumber() { def stagingReleaseBuild() { // Enable with STAGING_BUILDtrue or -PstagingReleaseBuild=true def fromEnv = System.getenv("STAGING_BUILD") == "true" - def fromProp = project.hasProperty("stagingReleaseBuild") && project.localReleaseBuild == "true" + def fromProp = project.hasProperty("stagingReleaseBuild") && project.stagingReleaseBuild == "true" return fromEnv || fromProp }