Skip to content

fixed

fixed #12

Workflow file for this run

name: Build document
on:
push:
branches: ["main", "develop"]
paths:
- docs/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install requirements
run: |
python3 -m venv venv
source venv/bin/activate
pip install maturin
maturin develop
pip install -r docs/requirements.txt
- name: Build document
run: |
source venv/bin/activate
cd docs
python3 -OO build.py
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4