Skip to content

docs: 更新 apiUrl 和配置相关内容 #246

docs: 更新 apiUrl 和配置相关内容

docs: 更新 apiUrl 和配置相关内容 #246

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run docs:build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/.vitepress/dist
clean: false