Skip to content

update docs/guide.md #236

update docs/guide.md

update docs/guide.md #236

Workflow file for this run

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