Actions workflow to deploy book to GH Pages

This commit is contained in:
Jack Grigg 2020-10-20 23:03:19 +01:00
parent b975600b35
commit 91fc0ffe51
1 changed files with 26 additions and 0 deletions

26
.github/workflows/book.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Pollard book
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.4'
- name: Build Pollard book
run: mdbook build book/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/book