Skip to content

Commit 7fbc4d4

Browse files
committed
build: update firebase-tools
Apparently there is a bug in the latest firebase CLI version that requires more permissions than actually needed; so our deployment in `main` fails.
1 parent 4932b47 commit 7fbc4d4

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"dgeni": "^0.4.14",
110110
"dgeni-packages": "^0.30.0",
111111
"esbuild": "^0.25.0",
112-
"firebase-tools": "^14.0.0",
112+
"firebase-tools": "14.4.0",
113113
"fs-extra": "^11.0.0",
114114
"glob": "^7.2.0",
115115
"highlight.js": "^11.0.0",

pnpm-lock.yaml

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/docs-deploy/deploy-to-site.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export async function deployToSite(
4747
await fs.promises.writeFile(gcpServiceKeyTmpFile, firebaseServiceKey);
4848
process.env['GOOGLE_APPLICATION_CREDENTIALS'] = gcpServiceKeyTmpFile;
4949

50-
await firebase('use', info.projectId);
50+
await firebase('use', info.projectId, '--debug');
5151
await firebase('target:clear', 'hosting', 'mat-aio');
5252
await firebase('target:apply', 'hosting', 'mat-aio', info.site.firebaseSiteId);
5353

0 commit comments

Comments
 (0)