Skip to content

0.9.3

0.9.3 #78

name: Deploy docs to gh-pages
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.9.x'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install llvmlite poetry
poetry install -E docs
- name: Building docs
run: eval $(poetry env activate) && cd docs && make build-html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build