Skip to content

📃 docs: 增加修改示例 #23

📃 docs: 增加修改示例

📃 docs: 增加修改示例 #23

Workflow file for this run

name: Deploy docs
on:
push:
branches: [master]
paths:
- 'docs/**'
- 'demo/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- run: yarn install --frozen-lockfile
- name: Build
run: |
yarn lib:build
mkdir -p ./demo/themes/async
cp -RT ./packages/hexo-theme-async ./demo/themes/async
yarn build
echo ${{ secrets.CNAME }} > docs/.vitepress/dist/CNAME
chmod 600 docs/.vitepress/dist/CNAME
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist