Skip to content

Rebrand the MoltBot to OpenClaw #56

Rebrand the MoltBot to OpenClaw

Rebrand the MoltBot to OpenClaw #56

Workflow file for this run

name: Docs
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[docs]"
- name: Build and deploy
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
mkdocs gh-deploy --force --clean