diff --git a/.firebaserc b/.firebaserc index 42207977c3fb6fd37cf98872c535b9e5ce0f162f..12c929e93d2f399df682d8eff163f1866637a2f5 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 abff886cd8518a3f36d4e4c0881c0f9d9796e762..aa7daf49cd0c70dc0b91b97e5b216d89ebc74e12 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