Skip to content

feat: Add support for Qwen model platform (#1033) (#1137) #798

feat: Add support for Qwen model platform (#1033) (#1137)

feat: Add support for Qwen model platform (#1033) (#1137) #798

Workflow file for this run

name: Build and deploy camel documents
on:
push:
branches: [ "master", "qa" ]
workflow_dispatch:
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python environment and install dependencies
uses: ./.github/actions/camel_install
with:
python-version: "3.10"
- name: Install Pandoc
run: sudo apt-get install -y pandoc
- name: Sphinx build
run: |
cd docs
poetry run make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html/
force_orphan: true
cname: docs.camel-ai.org