Skip to content

Add 2026-02-23 benchmark results with accurate API call and cost trac… #6

Add 2026-02-23 benchmark results with accurate API call and cost trac…

Add 2026-02-23 benchmark results with accurate API call and cost trac… #6

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'results/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Build site
run: |
mkdir -p _site
cp docs/index.html _site/
cp -r results _site/results
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: _site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4