Skip to content

Move frontend to web #51

Move frontend to web

Move frontend to web #51

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Install Dependencies
run: pnpm install
working-directory: ./web
- name: Build
run: yarn build
working-directory: ./web
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: build
path: ./web/build
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: build
path: ./web/build
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
PROJECT_PATH: ./web
PROJECT_ID: ${{ secrets.PROJECT_ID }}