Skip to content

chore: fixed bugs and updated readme #2

chore: fixed bugs and updated readme

chore: fixed bugs and updated readme #2

Workflow file for this run

name: Deploy Next.js app to GitHub Pages
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm
run: npm install -g pnpm
- name: Setup pnpm cache
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Deploy
uses: JamesIrons/gh-pages-deploy-action@master
with:
branch: gh-pages
folder: out