BitBucketのPipelineでfirebaseに自動デプロイ
firebaseトークン取得
プロジェクト配下に移動して以下コマンド
project$ firebase login:ci
ログインすればトークンが発行される
環境設定
画面右の歯車アイコンからトークンを登録
Name FIREBASE_TOKEN
Value {発行したトークン}
bitbucket-pipelines.ymlの編集
bitbucket-pipelines.yml
image: node:6.9.4
pipelines:
default:
- step:
caches:
- node
script:
- export FIREBASE_TOKEN=$FIREBASE_TOKEN
- npm install -g firebase-tools
- cd ./client // 任意:デプロイしたいモジュールがある場所に移動
- npm install
- firebase deploy --only hosting --token ${FIREBASE_TOKEN}
以上でfireabaseのHostingだけがデプロイされる
結構時間かかる
Author And Source
この問題について(BitBucketのPipelineでfirebaseに自動デプロイ), 我々は、より多くの情報をここで見つけました https://qiita.com/ryotax/items/886a94b488d32537b968著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .