Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: add docs homepage #2

feat: add docs homepage

feat: add docs homepage #2

Workflow file for this run

name: CI
on:
push:
branches: [master, main, next, beta]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build documentation
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
publish_branch: gh-pages
commit_message: 'Deploy documentation to GitHub Pages'