fix(data-source): 多页面时数据源依赖中可能包含其他页面的,导致更新时失败 #288
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: pages | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node version to 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- run: pnpm bootstrap | |
- name: Build VuePress site | |
run: npm run docs:build | |
- name: Build Playground site | |
run: npm run build:playground | |
- name: clean dist | |
run: rm -rf dist | |
- name: mkdir dist | |
run: mkdir dist && mkdir dist/docs && mkdir dist/playground | |
- name: move to dist | |
run: mv docs/.vitepress/dist/* dist/docs && mv playground/dist/* dist/playground | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
target_branch: gh-pages | |
build_dir: dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |