Skip to content

Revert to stable version of pages deploy #84

Revert to stable version of pages deploy

Revert to stable version of pages deploy #84

name: Firebase Deployment
on:
push:
branches:
- development
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build:dev
- name: Archive Production Artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Deploy to Firebase
uses: w9jds/[email protected]
with:
args: deploy --only hosting:brockcsc-test
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN_BROCKCSC_TEST }}