Skip to content

chore: typo

chore: typo #37

Workflow file for this run

name: github-ci
on:
pull_request:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# checkout source
- name: Checkout
uses: actions/checkout@v3
# generate artifacts
- name: install and build
run: |
npm i -g pnpm
pnpm install -w
pnpm build:all
pnpm build:docs
- name: github-ci
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}