Skip to content

feat: Add reference section of tool gateway operator to nav #48

feat: Add reference section of tool gateway operator to nav

feat: Add reference section of tool gateway operator to nav #48

Workflow file for this run

# GitHub Actions Workflow: Deploy Antora Documentation
# Builds documentation site and deploys to GitHub Pages.
# Runs on pushes to main, scheduled runs, and manual triggers.
name: Deploy Antora Docs
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 2 * * *' # Run daily at 2 AM UTC
jobs:
build:
name: Build documentation site
uses: ./.github/workflows/build-antora.yml
deploy:
name: Deploy to GitHub Pages
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download built site
uses: actions/download-artifact@v7
with:
name: antora-site
path: build/site
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/site
cname: docs.agentic-layer.ai
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'