add gh-pages action

This commit is contained in:
sinuio
2022-05-03 17:38:26 -07:00
parent 8d2fadd40f
commit 76cf422041

29
.github/workflows/gh-pages.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: github pages
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.18'
- run: mdbook build docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book