Skip to content

docs: Generalize agent role, skill loading, and search grounding desc… #132

docs: Generalize agent role, skill loading, and search grounding desc…

docs: Generalize agent role, skill loading, and search grounding desc… #132

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- '.vitepress/**'
- 'docs/**'
- 'devs/**'
- 'public/**'
- 'index.md'
- 'README.md'
- 'CONTRIBUTING.md'
- 'CHANGELOG.md'
- 'AGENTS.md'
- 'ROADMAP.md'
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build with VitePress
run: npm run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: .vitepress/dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4