fix(comment): 修改手机端评论框宽度 #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Docs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs.yml' | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Cache pnpm modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: | | |
- recursive: true | |
- name: Build GitHub Pages | |
env: | |
NODE_OPTIONS: --max_old_space_size=8192 | |
BASE: / | |
# HOSTNAME: https://fuckdoctors.github.io/ | |
run: pnpm run docs:build | |
- name: Deploy to github pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
repository-name: FuckDoctors/fuckdoctors.github.io | |
branch: master | |
folder: docs/.vuepress/dist | |
token: ${{ secrets.ACCESS_TOKEN }} |