Skip to content

Adjust image build to have appropriate attestations and a newline in … #14

Adjust image build to have appropriate attestations and a newline in …

Adjust image build to have appropriate attestations and a newline in … #14

Workflow file for this run

name: Publish site
on:
push:
workflow_dispatch:
permissions:
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Build the site
run: uv run mkdocs build --site-dir _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4