aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-09-13 21:59:32 -0700
committerAllan Wang <me@allanwang.ca>2021-09-13 21:59:32 -0700
commit36e73b2105b9350aef8ecc428af10c48968cd5bd (patch)
tree8c36429db4659672b365a1b3438024577d8ab97c
parentb5ff791aa936f70212d615ca7463c3ffa8d7b62c (diff)
downloadfrost-36e73b2105b9350aef8ecc428af10c48968cd5bd.tar.gz
frost-36e73b2105b9350aef8ecc428af10c48968cd5bd.tar.bz2
frost-36e73b2105b9350aef8ecc428af10c48968cd5bd.zip
Update getenv check for github actions
-rw-r--r--app/build.gradle2
1 files changed, 1 insertions, 1 deletions
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")