Skip to content

fix: rerun B/C1/C2 with corrected manifests, confirm results unchanged #268

fix: rerun B/C1/C2 with corrected manifests, confirm results unchanged

fix: rerun B/C1/C2 with corrected manifests, confirm results unchanged #268

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install MkDocs
run: pip install mkdocs-material
- name: Configure Pages
uses: actions/configure-pages@v6
- name: Build docs
run: mkdocs build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site/
- id: deployment
name: Deploy to GitHub Pages
uses: actions/deploy-pages@v5