Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Build and deploy
on:
push:
branches: [ main ]
# Run workflow manually
workflow_dispatch:
env:
CI: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Install dependencies
run: npm ci
- name: Build dependencies
run: npm run build
- name: Archive production artifact
uses: actions/upload-artifact@main
with:
name: build
path: build
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Download artifact
uses: actions/download-artifact@main
with:
name: build
path: build
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}