chore(deps): bump the gha group in /.github/workflows with 2 updates … #83
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/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: "20.5.1" | |
- name: Install Node modules | |
run: npm ci | |
- name: Convert JSDoc to Markdown | |
run: node cfg/jsdoc.config.cjs | |
- name: Build documentation | |
run: npm run doc:bld | |
- name: Publish documentation to GitHub Pages | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./doc/.vitepress/dist |