Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
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: '18'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy to GitHub Pages
uses: Sivamani-18/github-pages-action@v1.0.1
with:
github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: './out'
user_name: 'Sivamani-18'
user_email: 'siva@mindwaveventures.com'