This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
Publish Docs to Github Pages #1
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: 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 |