From a96ee5d1682834ce9328c736549f2041d3f8789c Mon Sep 17 00:00:00 2001
From: Taras Smakula <tarassmakula@gmail.com>
Date: Tue, 10 Oct 2023 14:47:56 +0300
Subject: [PATCH] Fix google_play_api_key

---
 .gitlab-ci.yml   | 2 +-
 fastlane/Appfile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e23d6cd18..223f8320d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -43,7 +43,7 @@ uploadPlayStoreBeta:
   stage: deploy
   script:
     - echo "Running the uploadPlayStoreBeta job"
-    - echo "$SERVICE_JSON" > google_play_api_key.json
+    - echo ${GPLAY_API_KEY_JSON} > google_play_api_key.json
     - bundle exec fastlane deployGoogle
   only:
     - main
\ No newline at end of file
diff --git a/fastlane/Appfile b/fastlane/Appfile
index 8485f0a1c..699f59a1c 100644
--- a/fastlane/Appfile
+++ b/fastlane/Appfile
@@ -1,2 +1,2 @@
-json_key_file("google_play_api_key.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
+json_key_file("../google_play_api_key.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
 package_name("org.futo.circles") # e.g. com.krausefx.app
-- 
GitLab