Merge pull request #142 from IEEEUCSC/main #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-3.vercel.app | |
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 }} |