Skip to content

docs: Fix tool count from 20 to 23 tools and update RPC message formats #20

docs: Fix tool count from 20 to 23 tools and update RPC message formats

docs: Fix tool count from 20 to 23 tools and update RPC message formats #20

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- main
paths:
- 'codeprism-docs/**'
- 'docs/**'
- '.github/workflows/deploy-docs.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: codeprism-docs/package-lock.json
- name: Install dependencies
run: |
cd codeprism-docs
npm ci
- name: Build documentation
run: |
cd codeprism-docs
npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: codeprism-docs/build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4