Skip to content

Update main.yml

Update main.yml #6

Workflow file for this run

name: Deploy React App
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build the app
run: npm run build
env:
GITHUB_PAGES: true
- name: Deploy to GitHub Pages
uses: actions/configure-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist