Skip to content

Fix Firebase Deploy #55

Fix Firebase Deploy

Fix Firebase Deploy #55

Workflow file for this run

name: Build and deploy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Write Firebase config
run: |
echo ${{ secrets.FIREBASE_CONFIG }} | base64 -d > firebase.config.json
- name: Build dependencies
run: yarn run build
- name: Archive production artifact
uses: actions/upload-artifact@main
with:
name: dist
path: dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Download artifact
uses: actions/download-artifact@main
with:
name: dist
path: dist
- name: Set up Google Cloud SDK
uses: google-github-actions/setup-gcloud@master
with:
project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
service_account_key: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}
export_default_credentials: true
- name: Deploy to Firebase
run: |
yarn global add firebase-tools
firebase deploy --only hosting
env:
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}