Merge pull request #627 from syou6162/renovate/firebase-admin-12.x #668
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Firebase Cloud Functionsでのdeployを実行する | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
GCLOUD_SERVICE_KEY: ${{ secrets.GCLOUD_SERVICE_KEY }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version: '20' | |
- run: npm install | |
working-directory: ./functions | |
- name: Setup Firebase CLI | |
run: npm install -g firebase-tools | |
# 認証情報を保持するjsonファイルをGOOGLE_APPLICATION_CREDENTIALSで指定したpassに生成 | |
- name: make GOOGLE_APPLICATION_CREDENTIALS | |
run: echo $GCLOUD_SERVICE_KEY | base64 -d > $GOOGLE_APPLICATION_CREDENTIALS | |
- name: Deploy Firebase Cloud Functions | |
run: firebase deploy --only functions | |
- name: delete GOOGLE_APPLICATION_CREDENTIALS | |
run: rm $GOOGLE_APPLICATION_CREDENTIALS | |
if: ${{ always() }} |