fix typo #704
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pages | |
on: | |
push: | |
paths: | |
- 'docs/**' | |
- 'README.rst' | |
- '**/*.rst' | |
- '**/*.c' | |
- '**/*.cpp' | |
- '**/*.cs' | |
- '**/*.h' | |
- '**/*.hpp' | |
- '**/*.java' | |
- '**/*.js' | |
- '**/*.py' | |
- '**/*.rs' | |
- '.gitattributes' | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Use Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
cache: 'pip' | |
cache-dependency-path: | | |
python/requirements.txt | |
c/requirements.txt | |
docs/requirements.txt | |
- name: Use Node.js 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: | | |
rustup default stable | |
rustup target add wasm32-unknown-unknown | |
cargo install wasm-pack | |
- uses: mymindstorm/setup-emsdk@v14 | |
with: | |
version: latest | |
- name: Install git, linguist | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: git ruby-github-linguist llvm | |
version: docs3 | |
- name: Build sphinx docs | |
run: make docs_dependencies html | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs/_build/html/ | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
if: ${{ github.ref == 'refs/heads/main' }} | |
uses: actions/deploy-pages@v4 | |