/deploy-firebase

A GitHub Action to deploy to Firebase Hosting

Primary LanguageShellMIT LicenseMIT

Deploy to Firebase

A GitHub Action to deploy to Firebase Hosting

  • You can choose a specific branch to allow deployment by using the TARGET_BRANCH env var (master if not specified).
  • Make sure you have the firebase.json file in the repository
  • Get the Firebase token by running firebase login:ci and store it as the FIREBASE_TOKEN secret
  • Set the project name in the FIREBASE_PROJECT env var

Example workflow

name: Build and Deploy
on:
  push:
    branches:
    - main
jobs:
  main:
    name: Build and Deploy
    runs-on: ubuntu-latest
    steps:
    - name: Check out code
      uses: actions/checkout@master
    - name: Build Hugo
      uses: lowply/build-hugo@v0.68.3
    - name: Deploy to Firebase
      uses: lowply/deploy-firebase@v0.0.3
      env:
        FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
        FIREBASE_PROJECT: name-of-the-project
        TARGET_BRANCH: main