Heyo,
So just now I updated my pipeline and made the push/merge to the branch (dev). But the pipeline is not running. Could anyone help me out?
Heres the pipeline
image: node:10.15.3
pipelines:
branches:
dev:
- step: name: Build & Deploy PWA
caches: - node
deployment: dev
script:
- cd functions; npm i; cd ..; npm i
- npm run build:prod:pwa
- pipe: atlassian/firebase-deploy:0.3.4
variables:
FIREBASE_TOKEN: '$FIREBASE_TOKEN'
I'm fairly new to this, so any help is gladly appreciated!
This is odd.
If I had to troubleshoot it I would:
Checking Webhooks
Bitbucket will only trigger Pipelines if webhooks are properly set and they should be. They are configured by default but I heard that in some rare cases they were missing, so let's check them up.
Their location: Repository settings >> Workflow - Webhooks.
You should see two of them:
You should be able to enable the onpush one and watch the pushes/merges for the dev branch:
The screenshots above are observed when things are working properly.
I hope one of the checks above can reveal some strangeness that will allow us to move forward in this investigation.
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.