Skip to content

Update deploy.yml

Update deploy.yml #19

Workflow file for this run

# https://github.com/marketplace/actions/deploy-to-github-pages
name: Deploy React App
on:
push:
branches:
- feat/generate-report-0.73
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Deploy react app
run: |
git config user.email "[email protected]"
git config user.name "poonamjain96"
cd ${{ github.workspace }}/WebpageRevamped
yarn install
yarn deploy