From 69fd2715f5032eeebb8194a3b841424e50c63e73 Mon Sep 17 00:00:00 2001 From: stdavis Date: Fri, 12 May 2023 12:00:38 -0600 Subject: [PATCH] fix(ci): don't update remote config defaults in actions I'll just have to do it manually for now. It's not a huge deal since we check for new configs on load. The issue is that the admin sdk can't authenticate with workload identity federation yet. Ref: https://github.com/firebase/firebase-admin-node/issues/1377 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 27ef5b07..84873881 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "build": "vite build", "build:dev": "npm run build:dev:update-remote-config-defaults && npm run build && npm run build:storybook", "build:dev:update-remote-config-defaults": "export GOOGLE_APPLICATION_CREDENTIALS=\"$PWD/src/functions/functions-key-dev.json\" && node src/build-scripts/updateRemoteConfigDefaults.js", - "build:prod": "npm run build:update-remote-config-defaults && npm run build", - "build:stage": "npm run build:update-remote-config-defaults && npm run build && npm run build:storybook", + "build:prod": "npm run build", + "build:stage": "npm run build && npm run build:storybook", "build:storybook": "storybook build --output-dir ./dist/storybook", "build:update-remote-config-defaults": "node src/build-scripts/updateRemoteConfigDefaults.js", "copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/assets",