Add GitHub Actions workflow to build book and push to github pages

- Run book build on all commits
- Deploy site on pushes to master

type: development
This commit is contained in:
Casey Rodarmor 2020-03-19 17:08:24 -07:00
parent b96c27e9b1
commit 1e5c19d02b
No known key found for this signature in database
GPG Key ID: 556186B153EC6FE0

28
.github/workflows/site.yaml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Site
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
all:
name: All
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: latest
- run: mdbook build book --dest-dir ../docs/book
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{secrets.GITHUB_TOKEN}}
publish_branch: gh-pages
publish_dir: ./docs