From be5c77155c2b4f7ed1d3d1bdd8d24483e5cc56f1 Mon Sep 17 00:00:00 2001
From: Hafiyyan <hafiyyan94@gmail.com>
Date: Tue, 31 Mar 2020 12:41:33 +0700
Subject: [PATCH] Fix gitlab CI for master

---
 .firebaserc    | 2 +-
 .gitlab-ci.yml | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.firebaserc b/.firebaserc
index 4220797..12c929e 100644
--- a/.firebaserc
+++ b/.firebaserc
@@ -1,7 +1,7 @@
 {
   "projects": {
     "default": "waspadabencana-staging",
-    "prod": "waspadabencana-prod",
+    "prod": "waspadabencana-master",
     "release": "sigapcsui"
   }
 }
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index abff886..aa7daf4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -76,7 +76,7 @@ build-apk-prod:
   image: hafiyyan94/flutter-beta:beta
   before_script:
     - rm android/app/google-services.json
-    - echo $GSERVICE_JSON_PROD | base64 -d > android/app/google-services.json
+    - echo $GSERVICE_JSON_MASTER | base64 -d > android/app/google-services.json
     - echo $KEY_PROPERTIES | base64 -d > android/key.properties
   script:
     - flutter build apk --release --obfuscate --split-debug-info=./logs
@@ -94,7 +94,7 @@ build-apk-release:
   image: hafiyyan94/flutter-beta:beta
   before_script:
     - rm android/app/google-services.json
-    - echo $GSERVICE_JSON_PROD | base64 -d > android/app/google-services.json
+    - echo $GSERVICE_JSON_RELEASE | base64 -d > android/app/google-services.json
     - echo $KEY_PROPERTIES | base64 -d > android/key.properties
   script:
     - flutter build appbundle --release --obfuscate --split-debug-info=./logs
@@ -110,7 +110,7 @@ build-plist-prod:
   stage: build
   image: python:latest
   script:
-    - echo $GSERVICE_PLIST_PROD | base64 -d > ios/Runner/GoogleService-Info.plist
+    - echo $GSERVICE_PLIST_MASTER | base64 -d > ios/Runner/GoogleService-Info.plist
   artifacts:
     paths:
       - GoogleService-Info.plist
-- 
GitLab