1.3.23 #92 可以配置是否用对应的颜色高亮本地化颜色ID #125
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: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
deploy-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.4.0 | |
run_install: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
node-version-file: docs/package.json | |
cache: pnpm | |
cache-dependency-path: docs/pnpm-lock.yaml | |
- name: Build documentation site | |
run: cd docs; pnpm docs:build | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v4 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/.vuepress/dist | |
fqdn: windea.icu | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |