Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
- run: npm run deploy
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}