Skip to content

gen: regenerate against 380-fn FFI (full 0.30 symbol set) #83

gen: regenerate against 380-fn FFI (full 0.30 symbol set)

gen: regenerate against 380-fn FFI (full 0.30 symbol set) #83

Workflow file for this run

name: Docs
on:
push:
branches: [ main, master ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install mkdocs
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build docs
run: mkdocs build --strict
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./site
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4