Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Publish Docs to Github Pages #1

Publish Docs to Github Pages

Publish Docs to Github Pages #1

Workflow file for this run

name: Publish Docs to Github Pages
on:
workflow_dispatch:
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
# Install dependencies in parent directory first
- run: npm install
# Build cdp-agentkit-core docs
- name: Build AgentKit Core docs
run: |
cd cdp-agentkit-core
npm install
npm run docs
cd ..
mkdir -p docs/cdp-agentkit-core
cp -r cdp-agentkit-core/docs/* docs/cdp-agentkit-core/
# Build cdp-langchain docs
- name: Build LangChain docs
run: |
cd cdp-langchain
npm install
npm run docs
cd ..
mkdir -p docs/cdp-langchain
cp -r cdp-langchain/docs/* docs/cdp-langchain/
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
keep_files: false