Skip to content

Reflect change of file location in code #168

Reflect change of file location in code

Reflect change of file location in code #168

Workflow file for this run

name: 🚀 Deploy Documentation
on:
push:
branches:
- master
workflow_dispatch:
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install dependencies
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.8"
# Build the book
- name: Build the book
run: |
make docs
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html