Publish Docs to Github Pages #4
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: | |
docs-cdp-agentkit-core: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./cdp-agentkit-core | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: latest | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ./cdp-agentkit-core/.venv | |
key: venv-agentkit-${{ runner.os }}-3.10-${{ hashFiles('cdp-agentkit-core/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --with dev | |
- name: Build Sphinx Documentation | |
run: | | |
poetry run make docs | |
cd docs | |
poetry run make html | |
- name: Save Documentation Output | |
run: mkdir -p ../docs_output/cdp-agentkit-core && cp -r ./docs/_build/html/* ../docs_output/cdp-agentkit-core | |
docs-cdp-langchain: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./cdp-langchain | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: latest | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ./cdp-langchain/.venv | |
key: venv-langchain-${{ runner.os }}-3.10-${{ hashFiles('cdp-langchain/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --with dev | |
- name: Build Sphinx Documentation | |
run: | | |
poetry run make docs | |
cd docs | |
poetry run make html | |
- name: Save Documentation Output | |
run: mkdir -p ../docs_output/cdp-langchain && cp -r ./docs/_build/html/* ../docs_output/cdp-langchain | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [docs-cdp-agentkit-core, docs-cdp-langchain] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy Documentation to Deployment Directory | |
run: | | |
mkdir -p docs | |
cp -r docs_output/cdp-agentkit-core docs/cdp-agentkit-core | |
cp -r docs_output/cdp-langchain docs/cdp-langchain | |
- name: Deploy to Github Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs | |
keep_files: false |