Skip to content

Merge pull request #44 from CU-ESIIL/codex/fix-bootstrap-workflow-yam… #2

Merge pull request #44 from CU-ESIIL/codex/fix-bootstrap-workflow-yam…

Merge pull request #44 from CU-ESIIL/codex/fix-bootstrap-workflow-yam… #2

Workflow file for this run

name: Deploy site (MkDocs)
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
pages: write
id-token: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- run: pipx install mkdocs-material && mkdocs build --strict
- uses: actions/upload-pages-artifact@v3
with: { path: site }
- uses: actions/deploy-pages@v4