Skip to content

Merge pull request #91 from IEEEUCSC/main #35

Merge pull request #91 from IEEEUCSC/main

Merge pull request #91 from IEEEUCSC/main #35

name: Build React App
on:
push:
branches: [ production ]
# pull_request:
# branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
- name: Install frontend dependencies with pnpm
run: |
cd Frontend
pnpm install
- name: Build frontend with pnpm
env:
REACT_APP_BACKEND_URL: https://hackaholics-backend-new.onrender.com
run: |
cd Frontend
pnpm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: Frontend/build
token: ${{ secrets.GITHUB_TOKEN }}