Skip to content

release 0.12.6: correctness fixes from a full review, and a website t… #35

release 0.12.6: correctness fixes from a full review, and a website t…

release 0.12.6: correctness fixes from a full review, and a website t… #35

Workflow file for this run

name: Deploy website
# Build + publish the Astro site in website/ to GitHub Pages.
# Enable once in the repo: Settings -> Pages -> Source: "GitHub Actions".
on:
push:
branches: [main]
paths:
- 'website/**'
- '.github/workflows/website.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment; don't cancel an in-progress publish.
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Astro site (website/ subdir)
uses: withastro/action@v3
with:
path: ./website
node-version: 22
package-manager: npm
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