Skip to content

refactor(compare): headline the geometric-mean speedup, not median-an… #12

refactor(compare): headline the geometric-mean speedup, not median-an…

refactor(compare): headline the geometric-mean speedup, not median-an… #12

Workflow file for this run

name: Deploy to GitHub Pages
# Deploys the built Astro site to GitHub Pages on every push to main.
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build with Astro
uses: withastro/action@v3
with:
node-version: 24
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4