Skip to content

Speedup MathJax loading FLR-139 #67

Speedup MathJax loading FLR-139

Speedup MathJax loading FLR-139 #67

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs build --verbose --strict
- uses: actions/upload-pages-artifact@v3.0.1
with:
path: ./public
deploy:
needs: build
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 }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4