mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-15 23:31:05 +00:00
* refactor(integrations): split TypeScript host plugins * feat(integrations): refresh host compatibility and status UI * fix(openclaw): secure status diagnostics
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
name: Deploy / Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "github-pages/**"
|
|
- "docs/**"
|
|
- "reme/config/default.yaml"
|
|
- "integrations/claude_code/README.md"
|
|
- "integrations/hermes_agent/README.md"
|
|
- "README.md"
|
|
- "README_ZH.md"
|
|
- "reme_studio/README*.md"
|
|
- "reme_studio/public/og.jpg"
|
|
- "integrations/dsh/README*.md"
|
|
- "integrations/dsh/figures/**"
|
|
- "integrations/openclaw/README*.md"
|
|
- "plugins/*/README*.md"
|
|
- "benchmark/*/README*.md"
|
|
- "benchmark/toolmemory/gitcha.png"
|
|
- "AGENTS.md"
|
|
- ".github/workflows/deploy-docs.yml"
|
|
- ".github/workflows/_build-docs.yml"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: pages
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build documentation
|
|
uses: ./.github/workflows/_build-docs.yml
|
|
with:
|
|
run_tests: true
|
|
upload_pages_artifact: true
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
deploy:
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
steps:
|
|
- name: Deploy
|
|
id: deployment
|
|
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5
|