Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
working-directory: docs
run: pnpm build

- name: Generate SEO/AEO assets
working-directory: docs
run: |
pnpm seo:check || true
pnpm seo:sync || true

# Production deploy (push to main)
- name: Deploy to Production
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs-seo-aeo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:

git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git fetch origin "${BRANCH_NAME}" || true
git checkout -B "${BRANCH_NAME}"
git add docs/static/sitemap.xml docs/static/llms.txt docs/static/llms-full.txt docs/static/docs.json docs/static/docs-urls.txt docs/static/ai-index.json docs/static/sidebar.json
git commit -m "chore(docs): sync generated SEO/AEO assets [skip ci]"
Expand Down
Loading