Hi there,
a really appreciate if anyone guide me to do this because out there is a lot documentation to do this but using github.
Hi @luberechavarria ,
Thank you for your question!
Yes, we have the guide Deploy to Firebase and the example repository with ready to use pipelines.
It would be great if you provide us with feedback about the guide and the pipe.
Cheers,
Oleksandr
Hi @luberechavarria and welcome to the community.
We have a pipe that can deploy your code to Firebase:
If you take a look at the link above, there are several examples on how you can configure it in your bitbucket-pipelines.yml file.
Is this something that works for you?
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi
Im trying to deploy my Nextjs into firebase hosting using the firebase-deploy pipe but I having an issue presented in this message.
Error: Cannot deploy a web framework from source because the experiment webframeworks is not enabled. To enable webframeworks run firebase experiments:enable webframeworks
What I have tried:
- Add the command into predeploy in firebase.json file
- tried to install the cli and run the command before the pipe.
How can i activate experiments feature with the pipe or add predeploy scripts into de pipe?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try to add
FIREBASE_CLI_EXPERIMENTS: webframeworks
To your script variables:
- step:
name: Deploy to Firebase
deployment: production
script:
- pipe: atlassian/firebase-deploy:5.1.0
variables:
FIREBASE_TOKEN: '<your_token>'
PROJECT_ID: '<your_project_id'
FIREBASE_CLI_EXPERIMENTS: webframeworks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.