Skip to content

Update README step 5 and step 23 (#178) #72

Update README step 5 and step 23 (#178)

Update README step 5 and step 23 (#178) #72

Workflow file for this run

name: "Deploy to GH pages"
on:
push:
branches: [main]
env:
HUSKY_SKIP: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build and validate all steps
run: node tools/builder
- name: Deploy to GH pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
force_orphan: true
enable_jekyll: true