Skip to content

feat: notes content update #120

feat: notes content update

feat: notes content update #120

name: Build and Deploy
on:
push:
branches:
- main
paths:
- '.github/workflows/**'
- 'docs/**'
- 'yarn.lock'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout ⛓️
uses: actions/checkout@v3
with:
persist-credentials: false
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache dependencies
uses: actions/cache@v3
id: yarn-cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Build VuePress site
run: yarn docs:build
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/.vuepress/dist
env:
# @see https://docs.github.com/cn/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}