docs: rm migration guide #100
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: doc | |
on: | |
push: | |
branches: [main] | |
jobs: | |
doc: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-node@v4.0.0 | |
with: | |
node-version: 18 | |
- name: Install Node modules | |
run: npm ci | |
- name: Convert JSDoc to Markdown | |
run: node .github/jsdoc.config.cjs | |
- name: Build documentation | |
run: npm run doc:bld | |
- name: Publish documentation to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3.9.3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./doc/.vitepress/dist |