- FIREBASE_TOKEN TBD
image: node:latest
cache:
paths:
- node_modules/
deploy:production:
stage: deploy
environment:
name: Production
url: https://your-app.firebaseapp.com/
only:
- master
script:
- npm install -g firebase-tools
- npm install
- npm run build
- firebase use --token $FIREBASE_TOKEN production
- firebase deploy --only hosting -m "Pipeline $CI_PIPELINE_ID, build $CI_BUILD_ID" --non-interactive --token $FIREBASE_TOKEN