From 76f6ac5f777727b2daaf99bdaa2711c4ec7ec04b Mon Sep 17 00:00:00 2001 From: Scott Prue Date: Mon, 20 Jul 2020 19:31:32 -0400 Subject: [PATCH] v0.9.10 * fix(ci): use correct databaseURL config in CI workflows --- .github/workflows/app-deploy.yml | 6 +----- package.json | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/app-deploy.yml b/.github/workflows/app-deploy.yml index 9ae133cf..bd4218f3 100644 --- a/.github/workflows/app-deploy.yml +++ b/.github/workflows/app-deploy.yml @@ -84,14 +84,10 @@ jobs: tr '\n' ' ' | \ sed 's/.*initializeApp(//g' | \ sed 's/);//g' | \ - jq -r 'del(.databaseURL) | to_entries[] | [.key, (.value | tojson)] | join("::")' | \ + jq -r 'to_entries[] | [.key, (.value | tojson)] | join("::")' | \ sed 's/:"/:/g; s/^/echo \"::set-env name=REACT_APP_FIREBASE_/g' \ ) - # Set emulator settings - echo "::set-env name=REACT_APP_FIREBASE_DATABASE_EMULATOR_HOST::localhost:$(cat firebase.json | jq .emulators.database.port)" - echo "::set-env name=REACT_APP_FIRESTORE_EMULATOR_HOST::localhost:$(cat firebase.json | jq .emulators.firestore.port)" - # Set other app configs (settings within .firebaserc in the ci.setEnv section) $(yarn bin)/firebase-ci setEnv diff --git a/package.json b/package.json index 33f7faac..bb508c60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fireadmin", - "version": "0.9.9", + "version": "0.9.10", "description": "Application for Managing Firebase Applications. Includes support for multiple environments and data migrations.", "scripts": { "clean": "rimraf build",