Skip to content

chore: clean up the site a bit (#387) #314

chore: clean up the site a bit (#387)

chore: clean up the site a bit (#387) #314

Workflow file for this run

name: Deploy x509-limbo site
on:
push:
branches:
- main
- site-staging
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- uses: ./.github/actions/run-harnesses
- name: build site
run: make site
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: site_html
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4