Skip to content

Instantly share code, notes, and snippets.

@itwasmattgregg
Created May 23, 2020 17:57
Show Gist options
  • Save itwasmattgregg/8910b3e18054b8904f0deae947224460 to your computer and use it in GitHub Desktop.
Save itwasmattgregg/8910b3e18054b8904f0deae947224460 to your computer and use it in GitHub Desktop.
Automate firebase hosting with github actions
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: dist
path: dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: dist
path: dist
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only hosting:site-name
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment