Skip to content

feat: add convenience application factory for self-hosting #14

feat: add convenience application factory for self-hosting

feat: add convenience application factory for self-hosting #14

Workflow file for this run

name: Deploy documentation to GitHub Pages
on:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/workflows/setup
- name: Generate documentation
run: forge doc -b
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: docs/book
- id: deployment
uses: actions/deploy-pages@v4