fix: remove testbench installation and workflow links #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' |