Fix typo in function name #169
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
# .github/workflows/docs.yaml | |
name: Deploy Documentation | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: # Allows manual triggering | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
build-deploy: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' # Use Node.js 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build documentation | |
run: npm run docs:build | |
- name: Deploy Documentation | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/.vitepress/dist | |
allow_empty_commit: true | |
keep_files: true | |
force_orphan: false |