From 36e73b2105b9350aef8ecc428af10c48968cd5bd Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Mon, 13 Sep 2021 21:59:32 -0700 Subject: Update getenv check for github actions --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 4fcf66c2..2e99604e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -40,7 +40,7 @@ android { versionName '3.1.0' // versionName androidGitVersion.name() - if (System.getenv('TRAVIS') != 'true') { + if (System.getenv('CI') != 'true') { // Verification for F-Droid builds if (versionCode != androidGitVersion.code()) { throw new GradleException("Version code mismatch, expected ${androidGitVersion.code()}, got $versionCode") -- cgit v1.2.3