Skip to content

Mostly complete the jekyll chapter. #29

Mostly complete the jekyll chapter.

Mostly complete the jekyll chapter. #29

Workflow file for this run

name: Publish Documentation
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
sudo apt-get -y install python3-sphinx
pip3 install furo
- name: Build Site
run: make html
- name: Deploy Site
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html/
force_orphan: true