2021-02-14 02:38:20 +00:00
|
|
|
name: Deploy Docs to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-10-21 21:39:19 +00:00
|
|
|
- main
|
2021-02-14 02:38:20 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup mdBook
|
|
|
|
uses: peaceiris/actions-mdbook@v1
|
|
|
|
with:
|
|
|
|
mdbook-version: 'latest'
|
|
|
|
|
2021-04-19 03:20:36 +00:00
|
|
|
- run: mdbook build doc
|
2021-02-14 02:38:20 +00:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_branch: gh-pages
|
2021-04-19 03:20:36 +00:00
|
|
|
publish_dir: ./doc/book
|
2021-02-20 07:48:47 +00:00
|
|
|
cname: devos.divnix.com
|