Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Firebase deploy works in the console but not in bitbucket pipeline

Malcolm Rudhag October 8, 2020

I'm trying to deploy my webapp to firebase hosting through a bitbucket pipeline, It's not deploying correctly in the pipeline but in the console it works no problem. This is what I do in the console:

-------------

npm install
npm run build

firebase login:ci
firebase deploy --project $PROJECT_NAME
-------------
In the pipeline I'm running this YAML script:

--------------------
image: node:10.15.3

pipelines:
   default:
     - step:
          name: Install and Build App
          caches:
              - node
          script:
              - npm install
              - npm run build
          artifacts:
              - build/**
     - step:
          name: Deploy App to Firebase
          deployment: production
          script:
            - pipe: atlassian/firebase-deploy:0.6.0
               variables:
                    KEY_FILE: $KEY_FILE
                    PROJECT_ID: $PROJECT_ID


Maybe someone can shed some light on why this isn't working, I'm new to pipeline scripts and I don't really see the issue, it succeeds in deploying to firebase hosting but It's not working at all on the actual domain.

 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events