Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

firebase deploy error, Error: Failed to list functions for (project name)

I am hosting my web application in Firebase and I have been deploying it with Gitlab CI/CD and it has been working just fine! But today for some reason I am getting this error when the pipeline is working

56Error: Failed to list functions for project-name

This is the command that I run in the pipeline

firebase deploy --only hosting --non-interactive --token $FIREBASE_TOKEN

This is the error I am getting

deploying hosting
50i  hosting[project-name]: beginning deploy...
51i  hosting[project-name]: found 39 files in dist/dev
52i  hosting: hashing files [34/39] (87%)
53i  hosting: upload complete
54✔  hosting[project-name]: file upload complete
55i  hosting[project-name]: finalizing version...
56Error: Failed to list functions for project-name

Kindly note that the command is working up to the point where it says "finalizing version..." then it stops.

What could be causing this error?

like image 803
Ahmed Avatar asked Mar 11 '26 11:03

Ahmed


1 Answers

My firebase tools version was 11.14.0. I changed that to 11.13.0. Installed this specific version through npm install -g [email protected]. After that, I could successfully deploy.

like image 191
Ryan Cokerdem-DePriest Avatar answered Mar 13 '26 11:03

Ryan Cokerdem-DePriest